HTML <menu> Tag Last Updated : 18 Jan, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report HTML <menu> Tag defines an Unordered List of items. For creating an unordered list, we can use the <menu> tag with HTML <li> tags. The HTML <menu> tag is a semantic tag and an alternative option for the HTML <ul> tag. Syntax<menu> <li>Content... </li> <li>Content... </li> </menu> Supported Attribute The HTML <menu> tag supports the Global Attributes and Event Attributes. Note: The HTML <menu> Tag was removed in HTML 4.01 but in HTML5 it has been redefined. Previously, list items were declared within the deprecated <menuitem> element. Now, the <li> element serves as a suitable alternative. Example 1: Implementation of the <menu> tag with the Browser’s Default CSS. HTML <!DOCTYPE html> <html> <head> <title>HTML menu Tag</title> <style> menu { display: block; list-style-type: disc; margin-block-start: 1em; margin-block-end: 1em; margin-inline-start: 0px; margin-inline-end: 0px; padding-inline-start: 40px; } </style> </head> <body> <p>HTML <menu> tag</p> <menu> <li>menu list</li> <li>unordered list</li> <li>ordered list</li> </menu> </body> </html> Output: Example 2: Implementation of menu tag by using Custom CSS. HTML <!DOCTYPE html> <html> <head> <title>HTML menu Tag</title> <style> menu { color: rgb(45, 139, 45); font-weight: 700; } </style> </head> <body> <p>HTML menu tag</p> <menu> <li>menu list</li> <li>unordered list</li> <li>ordered list</li> </menu> </body> </html> Output: HTML DOM PropertyHTML DOM Menu Object can be used with the <menu> Tag. Browser SupportChrome 1Edge 12Firefox 1Opera 12.1Safari 3 Comment More infoAdvertise with us Next Article HTML Tag S shivanigupta18rk Follow Improve Article Tags : HTML HTML5 HTML-Tags Similar Reads HTML <menuitem> tag The HTML <menuitem> tag is used to define command or menu that the user can utilize from the popup item. this tag is not supported in HTML5. This tag is support Global Attributes in HTML and Event Attributes in HTML.Syntax: <menuitem label="" icon="" type> </menuitem>Attribute: che 3 min read HTML <nav> Tag The <nav> tag in HTML is used to define navigation sections on a webpage. It typically contains links to key parts of the site, such as the main menu, table of contents, or index. These links are usually organized using unordered lists (<ul>) or displayed as standalone links.Using the 3 min read HTML <span> Tag The HTML <span> tag is an inline container that is used to group and apply styles or scripts to specific parts of text or elements within a document. The <span> tag is inline, meaning it doesn't create a new line. It stays within the same line as the text around it.The <span> tag d 4 min read HTML <section> Tag The Section tag defines the section of documents such as chapters, headers, footers, or any other sections. The section tag divides the content into sections and subsections. The section tag is used when requirements of two headers or footers or any other section of documents are needed. Section tag 3 min read HTML <ul> Tag The HTML <ul> tag defines an unordered (bulleted) list. Use the <ul> tag together with the <li> tag to create unordered lists. List items (<li>) are nested within <ul>, allowing the display of items without a specific order, typically represented by bullet points in bro 1 min read HTML <html> Tag HTML is a language full of diverse elements, and one such element is the <html> tag. This tag, standing for âHyperText Markup Languageâ, is used to define the root of an HTML or XHTML document.It serves as the main container for all other HTML elements, excluding the <!DOCTYPE> declarati 3 min read Like