Open In App

HTML | <meter> form Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

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
     


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