Horje
HTML | <meter> form Attribute

The HTML <meter> form Attribute is used to specify that the <meter> element can contain one or more forms.
Syntax: 
 

<meter form="form_id">

Attribute Values: It contains single value form_id which specify one or more form that the <meter> element  belongs to. The value of this attribute should be id of the <form> element.
Example: 
 

html

<!DOCTYPE html>
<html>
    <head>
        <title>
            HTML meter form Attribute
        </title>
    </head>
     
    <body style = "text-align:center">
         
        <h1 style = "color:green;">
            GeeksforGeeks
        </h1>
         
        <h2>
            HTML meter form Attribute
        </h2>
         
        <form action="#" method="post" id="GFG_form">
            Username: <input type="text" name="uname">
            <br><br>
            Password: <input type="password" name="password">
            <br><br>
            <input type="submit" name="Submit">
        </form>
        <br>
        Author Score: <meter form="GFG_form" min="0"
            low="40" high="90" max="100"value="60">
        </meter>
    </body>
     
</html>                   

Output: 
 

Supported Browsers: 

  • Google Chrome 6
  • Edge 18
  • Firefox 16
  • Opera 11
  • Safari 6
     



Reffered: https://www.geeksforgeeks.org


HTML

Related
HTML DOM Audio loop Property HTML DOM Audio loop Property
HTML &lt;input type=&quot;time&quot;&gt; HTML &lt;input type=&quot;time&quot;&gt;
HTML | &lt;input&gt; height Attribute HTML | &lt;input&gt; height Attribute
HTML DOM Audio defaultPlaybackRate Property HTML DOM Audio defaultPlaybackRate Property
Node.js URLSearchParams.keys() Node.js URLSearchParams.keys()

Type:
Geek
Category:
Coding
Sub Category:
Tutorial
Uploaded by:
Admin
Views:
8