Menu
Links & Navigation

<nav> Navigation

Wraps the primary navigation links of a site or section.

1Marking Up Navigation

<nav> tells screen readers and search engines "this group of links is navigation". Use it for primary menus, breadcrumbs, and pagination — not every group of links.

Example Code
<nav aria-label="Main">
  <ul>
    <li><a href="/">Home</a></li>
    <li><a href="/about">About</a></li>
    <li><a href="/contact">Contact</a></li>
  </ul>
</nav>

Finished reading?

Mark this topic as complete to track progress.