C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
HTML Meter TagHTML <meter> tag is used to measure data within a given range. It defines a scalar measurement with range. It is also known as a gause. It should be used to display disk usage, voting population etc. The HTML meter tag is new in HTML5 so you must use new browsers. Attributes of HTML Meter TagHTML <meter> tag supports the global and event attributes as well as some specific attributes.
HTML Meter Tag ExampleLet's see the progress example with min, max and value attributes. <p>Display a gauge:</p> <meter value="30" min="1" max="100">30 out of 100</meter><br> <meter value="0.8">80%</meter> Output: Display a gauge: Styling MeterYou can apply CSS code on meter tag. meter{ width: 300px; height: 30px; } Output: Supporting Browsers
Next TopicHTML nav Tag
|