<menu>
Anonymous contributor
Published Jul 1, 2022Updated May 15, 2024
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-interactive 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:
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.