Open In App

HTML high Attribute

Last Updated : 28 Aug, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

The HTML high Attribute is used to specify the range where the value of the gauge is considered to be of high value
The value of the high attribute would be less than the max attribute but more than the min and low attribute values. It can be used with the <meter> Element. 

Applicable: 

Syntax: 

<meter high="number"> 

Attribute Values: It contains the Floating point number which is considered to be a high value.

Example: This Example illustrates the use of high attribute in meter Element. 

HTML
<!DOCTYPE html>
<html>

<head>
    <title>
        HTML high attribute
    </title>
</head>

<body style="text-align:center;">
    <h1>GeeksforGeeks</h1>
    <h2>
        HTML high Attribute:
    </h2> Sachin's score:
    <meter value="5" min="0" max="10" high="6">
        5 out of 10
    </meter>
    <br>Laxma sxore:
    <meter value="0.5" max="1.0" min="0" high="0.6">
        50% from 100%
    </meter>
</body>

</html>

Output: 

Supported Browsers: The browser supported by HTML high Attribute are listed below: 


Next Article

Similar Reads