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
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
26 Jul, 2022
Like Article
Save Article