Use the high attribute in HTML to set the range of values that are considered high.
You can try running the following code to achieve highproperty−
<!DOCTYPE html> <html> <body> <p> Water Level: <meter min = "0" low = "40" high = "100" max = "100" value = "75"></meter> </p> </body> </html>
The above is the detailed content of How to set the range considered as high value in HTML?. For more information, please follow other related articles on the PHP Chinese website!