Open In App

HTML <menuitem> label Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <menuitem> label attribute is used to specify the text value which represents the name of command or menuitem.  

Syntax:

<menuitem label="text">

Attribute Values: It contains a single value that defines a shorter description.

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

 

HTML




<!DOCTYPE html>
<html>
  
<body>
    <center>
        <h1 style="color: green;">
            GeeksforGeeks
        </h1>
          
        <h2>HTML menuitem 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(
                        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 : 22 Oct, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads