HTML menu Tag

Example

A toolbar with two menu buttons on it ("File" and "Edit"), each of which has a dropdown menu with a series of options:
<menu type="toolbar">
<li>
<menu label="File">
<button type="button" onclick="file_new()">New...</button>
<button type="button" onclick="file_open()">Open...</button>
<button type="button" onclick="file_save()">Save</button>
</menu>
</li>
<li>
<menu label="Edit">
<button type="button" onclick="edit_cut()">Cut</button>
<button type="button" onclick="edit_copy()">Copy</button>
<button type="button" onclick="edit_paste()">Paste</button>
</menu>
</li>
</menu>

Teach Yourself  by BH24 HTML Editor Tool!

The <menu> tag is not currently supported in any of the major browsers.

Definition and Usage

The <menu> tag defines a list/menu of commands.
The <menu> tag is used for context menus, toolbars and for listing form controls and commands.

Tips and Notes

Tip: Use CSS to style menu lists.