Online Html Editor

<!DOCTYPE html> <html lang="en"> <head> <title> HTML Meter Example with high Attribute </title> </head> <body> <h1>Server Load</h1> <label for="server-load"> Current load: </label> <meter id="server-load" value="0.7" min="0" max="1" low="0.3" high="0.8" optimum="0.5"> 70% </meter> <p> Try changing the value of 'value' attribute, server load bar will be green for values between 0.3 and 0.8, All other cases it will be yellow. This is because we set high as 0.8 and low as 0.3. </p> </body> </html>