Skip to content

Instantly share code, notes, and snippets.

@kresnasatya
Created March 22, 2019 04:24
Show Gist options
  • Save kresnasatya/1592a6a5d76cfda22ae227a20a113246 to your computer and use it in GitHub Desktop.
Save kresnasatya/1592a6a5d76cfda22ae227a20a113246 to your computer and use it in GitHub Desktop.
Navigation 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>Navigation - Web Semantic</title>
</head>
<body>
<!-- Voice over will read "nav" tag as navigation on Chrome and Safari -->
<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>
<br>
<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