Meter in HTML5
How to use the meter tag in HTML5
Meter
It is used to measure the given range
<h2 style="color:blue"><i>meter tag is used to measure with in known value</i></h2>
<meter value="50" min="20" max="100"></meter>
- In the above code snippet we are having the
meter
tag which measures the range, the meter value as 50
- The meter min value is 20 which defines the meter value should starts from 20
- The meter max value is 100 which is used to define the meter max value
output

Views: 4027 | Post Order: 28