Black Lives Matter! ✊🏾

nav

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. 4.3.4. The nav element

Links about nav

  1. HTMHell - #18 main divigation

    posted on

    A collection of bad practices in HTML, copied from real websites.

  2. <nav>: The Navigation Section element

    posted on by MDN

    The HTML nav element represents a section of a page whose purpose is to provide navigation links, either within the current document or to other documents. Common examples of navigation sections are menus, tables of contents, and indexes.

  <nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/events">Current Events</a></li>
...more...
</ul>
</nav>