<menu>

Anonymous contributor's avatar
Anonymous contributor
Anonymous contributor's avatar
Anonymous contributor
Published Jul 1, 2022Updated Apr 4, 2023
Contribute to Docs

The <menu> element represents an unordered list of items with more semantic meaning than a regular <ul> element.

Syntax

<menu>
  <li><!-- Content here --></li>
</menu>

Each item is user-interative content such as a link and buttons.

Example

The following example is a menu of buttons that might go well with a social media application:

<menu>
<li><button onclick="like()">Like</button></li>
<li><button onclick="share()">Share</button></li>
<li><button onclick="subscribe()">Subscribe</button></li>
</menu>

Each list item is a button with text and event listeners, prepended with the default dot marker:

Rendered <menu> tag example

All contributors

Looking to contribute?

Learn HTML on Codecademy