meter tag in html
The <meter> tag defines a scalar measurement within a known range, or a fractional value. This is also known as a gauge.
Examples: Disk usage, the relevance of a query result, etc.
The <meter> tag should not be used to indicate progress (as in a progress bar). For progress bars, use the <progress> tag.
<!DOCTYPE html>
<html>
<body>
<p>Display a progress:</p>
<meter value="25" min="0" max="50">2 out of 10</meter><br>
<meter value="0.6">60%</meter>
</body>
</html>
Output:
Display a progress:
Comments
Post a Comment