HTML

HTML Intro

HTML Intro Quiz

HTML Intro Exercise

HTML Basics

HTML Basic Quiz

HTML Basic Exercise

HTML Advance

HTML Advance Quiz

HTML Advance Exercise

HTML Tags List

HTML Global Attributes

HTML Attributes

FAQs

HTML meter Tag

HTML meter Tag

 

 

The meter tag is used to define a scalar measurement within a known range, or a fractional value. For best performance, we use a label tag with it. In other words, it is a gauge. However, it does not represents the progress bar. For that purpose, we use the progress element.

 

Attribute Explanation:-

 

Attribute Value Description
form form_id Specifies which form meter element belongs to.
high number Specifies range that is considered to be a high value.
low number Specifies range that is considered to be a low value.
max number Specifies maximum value of range.
min number Specifies minimum value of the range. Its default value is 0.
optimum number Specifies what value is optimal value for gauge.
value number Required. Specifies current value of gauge.

 

Syntax:-

 

Its syntax is:- < meter >

Code Explanation

All Tutorials related to HTML Tags List

All Sections related to HTML