Open In App

HTML <menu> label Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <menu> label Attribute  is used to specify a text value that indicates the visible label name of the menu element Although, this attribute is also used to specify the name of the menu items inside the menu.  

Syntax:

<menu label="text"> 

Note: This attribute has been deprecated and is no longer used.

Attribute Values 

  • text:  It contains a single value that defines the name of the label of the menu

Example: Below code illustrates the use of label attribute with the <menu> tag. ;

HTML




<!DOCTYPE html>
<html>
 
<body>
    <center>
        <h1 style="color: green;">
            GeeksforGeeks
        </h1>
 
        <h2>HTML <menu> label Attribute</h2>
 
        <div style="background:green;
            border:2px solid black;
            padding: 10px;" contextmenu="geeks">
 
 
             
<p>A Computer Science Portal for Geeks</p>
 
 
 
            <menu type="context" id="geeks">
                <menu label="Share on...">
                    <menuitem label="Twitter" onclick=
                    "window.open('//twitter.com/intent/tweet?text='
                    + window.location.href);">
                    </menuitem>
                    <menuitem label="Pinterest" onclick="window.open(
                        'http://pinterest.com/pin/create/button/?url=' +
                        window.location.href);">
                    </menuitem>
                </menu>
 
                <menuitem label="Email This Page"
                    onclick="window.location='mailto:?body='
                    + window.location.href;">
                </menuitem>
            </menu>
        </div>
         
<p>A Computer Science Portal for Geeks</p>
 
        <hr>
         
<p>Right click on green div and see the menuitem
    </center>
</body>
 
</html>


Output: 

Supported Browsers:

  • Firefox 8.0


Last Updated : 12 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads