To set an optimal value for the gauge in HTML, use the optimum attribute. You can try to run the following code to implement optimum attribute −
Example
<!DOCTYPE html> <html> <body> <h3>Gauge</h3> <p><meter value = "0.7" high = "0.9" low = "0.1"></meter></p> </body> </html>