nav

The nav element is used to define a section of a document that links to other pages or sections of the document. It can be used to group related content together, such as a section of a blog post or a set of related articles.

Example:

<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>