Skip Navigation

Where should 'Skip to main content' links go?

Published


“Skip to main content” links should target the <main> HTML element of a webpage. Add an id to that element and reference it in the skip link’s href (prefixed with #).

<body>
  <a href="#main"> Skip to main content </a>
  <main id="main">
    <!-- ... -->
  </main>
</body>
Back to Top