HTML Navigation Element — a practical guide to HTML nav element with clear examples you can reuse in real projects.
HTML Tutorial Series (41/79). Prefer one article? Read the complete HTML tutorial.
Short description
Don’t put every link group in nav — reserve for primary navigation regions.
Nav
<nav aria-label="Primary">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/blog">Blog</a></li>
</ul>
</nav>