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.
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%.