Direct Link
I really had no idea about the HTML <meter> element that can show a range of values, until I read this tweet by รlvaro Trigo ๐
Example: ยง
<meter min="0" max="100"
	low="30" high="80" optimum="60"
	value="70">Result:
Note: The <meter> tag should not be used to show the progress of a task. Use the <progress> tag instead.
