HTML nav (Navigation) Tag

29/01/2023
HTML Navigation Tag

In HTML the <nav> (navigation) tag is used for the menu.

<nav>
  <ul>
    <li><a href="">A</a></li>
    <li><a href="">B</a></li>
    <li><a href="">C</a></li>
  </ul>
</nav>

Default <nav> CSS Settings

nav {
  display: block;
}

Browsers That Support the <nav> Tag

HTML nav Tag Supported Browsers

Click on https://caniuse.com/mdn-html_elements_nav to view the current version of the above table and more details.