<nav>
The <nav> element defines a set of navigation links
Notice that NOT all links of a document should be inside a <nav> element. The <nav> element is intended only for major block of navigation links
Browsers, such as screen readers for disabled users, can use this element to determine whether to omit the initial rendering of this content
HTML5 introduced a method to let web designers take control over the viewport (the user's visible area of a web page), through the <meta> tag
Syntax
<nav>
<a href='#'>Link</a>
<a href='#'>Link</a>
<a href='#'>Link</a>
<a href='#'>Link</a>
</nav>
Example