A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-meter-form-attribute/ below:

HTML | <meter> form Attribute

HTML | <meter> form Attribute

Last Updated : 26 Jul, 2022

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: 



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4