Html 5 Meter Value Attribute Tag

The <meter> value attribute tag is used to indicates the actual value parsed out and it indicates current value of the meter.The <meter> value attribute value is "value". The <meter> tag is new in HTML5.

Syntax:

<meter value = "...">... </meter>

Example Code

<!DOCTYPE HTML>
<meter value="40" max="80" value="60"> 60 within 40 and 80 </meter>

Out Put :



60 within 40 and 80

In the above example meter value attribute value is 80 and value is 60 and value is 40.





Content