<menu> Tag in HTML 5

In this article I am going to tell about <menu> Tag in HTML 5.
  • 2109
Definition

<menu> Tag is used for defining menu/list of commands. Menu tag is used for context menu, listing of controls and toolbars.

Example
 

<html>
<head>
       <title></title>
</head>
<body>
         <menu type="toolbar">
              <li>File</li>
              <li>Edit</li>
             <li>Format</li>
             <li>View</li>
             <li>Help</li>
        </menu>
</body>
</html>

Output

menu.JPG

You may read more about HTML 5 tags here

Ask Your Question 

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

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.