< All the HTML Tags >

<meter></meter>

Video Coming Soon...

  • meter

    Tag Type

    inline

    Tag Category

    forms

    Defines a scalar measurement within a known range

    Viewed

    1

    Examples

    1

Definition:

The HTML <meter> tag is used to represent a scalar measurement within a known range, typically rendered as a gauge or bar.

Attributes like min, max, and value specify the measurement range and the current value, providing a visual representation of data such as progress or performance.

The `<meter>` tag is essential for conveying quantitative information effectively, improving user understanding of measurements.

Attributes:

value, min, max, low, high, optimum, Global attributes (e.g., class, id, style)

Accessibility:

Coming Soon…

Default meter Example:

Using the <meter> tag to represent a measurement.
<meter value="2" min="0" max="10">2/10</meter>

Default meter Result:


Coming Soon…

Community Examples:

Coming Soon…
Coming Soon…