Created
March 22, 2019 04:18
-
-
Save kresnasatya/43b0bd607f155b1a0e2965b47111c5c5 to your computer and use it in GitHub Desktop.
Header tag
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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