<menu> Tag in HTML

In this article i am going to explain about menu tag in HTML
  • 1658
Definition

<menu> tag is used to create a menu. You can use <li> to add the list of item.

Supporting Browsers

Internet Explorer, Mozilla Firefox, Google Chrome, Safari and Opera are the supporting browsers.

Example
 

<html>

<head>

    <title></title>

</head>

<menu>

    <li>Menu Item1</li>

    <li>Menu Item2</li>

    <li>Menu Item3</li>

</menu>

</html>

 Output

menu.h13.jpg

Further Readings

You may also want to read these related articles

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.