Computer >> Computer tutorials >  >> Programming >> HTML

How do we set the range that is considered to be of low value in HTML?


Use the meter attribute to set the range considered to be of low value.

Example

You can try to run the following code to implement meter attribute −

<!DOCTYPE html>
<html>
   <head>
      <title>HTML meter Tag</title>
   </head>
   <body>
      <meter value = "6" high = "9" low = "5" min = "0" max = "10">6 out of 10</meter>
      <br />
      <p>Water level can be seen here</p>
   </body>
</html>