Skip to content

Instantly share code, notes, and snippets.

@kresnasatya
Created March 22, 2019 04:18
Show Gist options
  • Save kresnasatya/43b0bd607f155b1a0e2965b47111c5c5 to your computer and use it in GitHub Desktop.
Save kresnasatya/43b0bd607f155b1a0e2965b47111c5c5 to your computer and use it in GitHub Desktop.
Header tag
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Header - Web Semantics</title>
</head>
<body>
<!-- Voice over will read "header" as a "banner" on Chrome and Safari -->
<header>
<h1>Interneting Is Easy!</h1>
<nav>
<ul>
<li><a href='#'>Home</a></li>
<li><a href='#'>About</a></li>
<li><a href='#'>Blog</a></li>
<li><a href='#'>Sign Up</a></li>
</ul>
</nav>
</header>
<a href="./index.html">Back</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment