HTML <meter> optimum Attribute Last Updated : 07 Jun, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report The HTML <meter> optimum Attribute in HTML indicates the optimal numeric value for the gauge. It must be within the range i.e between min and max. When it is used with the low and high attribute, it gives an indication where along the range is considered preferable.Syntax: <meter optimum="number"> Attribute Values number: It contains the floating point number which represent the optimal value of the gauge. Examples: html <!DOCTYPE html> <html> <head> <title> HTML Meter optimum Attribute </title> </head> <body> <center> <h2> GeeksForGeeks </h2> <h2 style="color: green;"> HTML Meter optimum Attribute </h2> <p> optimum value below low and high: <meter value="0.6" max="0.9" min="0.1" optimum="0.1" high="0.5" low="0.2"> </meter> </p> <p> optimum value between low and high: <meter value="0.6" max="0.9" min="0.1" optimum="0.4" high="0.5" low="0.2"> </meter> </p> <p> optimum value above low and high: <meter value="0.6" max="0.9" min="0.1" optimum="0.6" high="0.5" low="0.2"> </meter> </p> </center> </body> </html> Output: Supported Browsers: The browsers supported by HTML <meter> optimum Attribute are listed below: Google Chrome 6Edge 18Firefox 16Opera 11Safari 6 Comment More infoAdvertise with us Next Article HTML | name Attribute M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML Web technologies HTML-Attributes Similar Reads HTML <meter> min Attribute The HTML <meter> min Attribute is used to specify the lower bound of the gauge. The value of the min attribute is always less than the max attribute. It has a default value which is 0. Syntax: <meter min="number"> Attribute Values: number: It contains a numeric value which specify the mi 1 min read HTML | <meter> name Attribute The HTML <meter> name Attribute is used to specify the name attribute of meter element. It is used to reference the form-data after submitting the form or to reference the element in a JavaScript.Syntax: <meter name="name"> Attribute Values: It contains a single value name which describe 1 min read HTML | <meter> value Attribute The <meter> value attribute in HTML is used to specify the current value of the gauge. The specified value must be in between the min and max attribute.Syntax: <meter value="number"> Attribute Value: This attribute contains single value number which is required. It is used to specify the 1 min read HTML | <meter> max Attribute The max Attribute in <meter> element is used to specify the upper bound of the gauge. The value of the max attribute must be greater than the min attribute. It has a default value which is 1. Syntax: <meter max="number"> Attribute Values: It contains the value i.e number which specifies 1 min read HTML | <meter> low Attribute The HTML meter low Attribute is used to specify the range where the gauge value attribute is considered to be low. The value of the low attribute is greater than the value of min attribute and less than the value of max and high attributes.Syntax: <meter low="number"> Attribute Values: number: 1 min read HTML | <meter> high Attribute The HTML high Attribute is used to specify the range where the value of 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.Syntax: <meter high=" 2 min read Like