Welcome ðŸŽ‰

logo

ReactLMS

Search
Light Mode
Contact Us

2 min to read

Contact us

No results for your search.
Sorry, an unexpected error occurred

Concept


Tag <meter> in HTML is used to display a numeric value on a progress bar.

It is commonly used to measure and display the progress of a certain task.


Usage


Syntax

<meter value="giá_trị" min="giá_trị_tối_thiểu" max="giá_trị_tối_đa"></meter>







Where:

Example

<meter value="75" min="0" max="100"></meter>






Result

In this example, the value of the progress bar is set to 75, the minimum value is 0, and the maximum value is 100. Therefore, the progress bar will be displayed at 75%.


Read more
On This Page