DONT ADD ANYTHING HERE!

The nav element represents a section of a page that links to other pages or to parts within the page: a section with navigation links

Notes

  1. Not all groups of links on a page need to be in a nav element - only sections that consist of major navigation blocks are appropriate for the nav element.
  2. In particular, it is common for footers to have a short list of links to various pages of a site, such as the terms of service, the home page, and a copyright page. The footer element alone is sufficient for such cases, without a nav element.

Example

HTML

  <nav>
    <ol>
      <li><a href="#">Bikes</a>
      <li><a href="#">BMX</a>
      <li><a href="#">Raleigh</a>
    </ol>
  </nav>

References