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 contains the value i.e form_id which specify one or more form attribute belongs to the <meter> element. The value of this attribute should be id of the <form> element.
Example:
<!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: The <meter> form Attribute is not supported by the browsers.