
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>nav {
  display: block;
}

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