<!DOCTYPE html>
<html>
<body>
<h1>The meter high, low, max, min, and value attributes</h1>
<p><label for="anna">Anna's score:</label>
<meter id="anna" min="0" low="40" high="90" max="100" value="95"></meter></p>
<p><label for="peter">Peter's score:</label>
<meter id="peter" min="0" low="40" high="90" max="100" value="65"></meter></p>
<p><label for="linda">Linda's score:</label>
<meter id="linda" min="0" low="40" high="90" max="100" value="35"></meter></p>
<p>The high attribute specifies the range where the gauge's value is considered to be a high value.</p>
<p>The low attribute specifies the range where the gauge's value is considered to be a low value.</p>
<p>The max attribute specifies the upper bound of the gauge.</p>
<p>The min attribute specifies the lower bound of the gauge.</p>
<p>The value attribute specifies the current value of the gauge.</p>
</body>
</html>