References

Collection of references for web development.

HTML meter tag

Description

The HTML <meter> element represents a ranged scalar, used commonly to display factors such as disk usage, temperatures, etc.

Attributes

Attribute Value Description
form ID Specifies the form(s) that the element belongs to.
high number Specifies the high end of the ranged value.
low number Specifies the low end of the ranged value.
max number Specifies the maximum value for this element.
min number Specifies the minimum value for this element.
optimum number Specifies the preferred end of the ranged value.
value value Specifies the value of the element.

Example

<p>Disk usage: <meter low="30" high="80" max="100" value="85"></meter></p>