Html5 menu tag

In the html5 <menu> tag is used to identify menu list and also is using <menu> tag for <ul>,<ol> and <dir> tags and it redefined in html5.mostly which tag is using context menus, toolbars commands and form controls.

Syntax:

<menu> ... </menu>

Example Code

<p> Car Name Lists </p>
<menu>
  <li> Baja </li>
  <li> Barchetta </li>
  <li> Beetle </li>
</menu>

Out Put:



Car Name Lists

  • Baja
  • Barchetta
  • Beetle
  • In the above example has been applied <menu> tag for "Car Name Lists".





    Content