Back Code Run <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .meter-elm{ width: 250px; } </style> </head> <body> <form> <label for="user-password">Password</label> <input type="password" id="user-password"> <br> <br> <meter id="status" class="meter-elm" min="0" max="100" low="33" high="66" optimum="80" value="75"></meter><br> <label for="status">Strong</label> </form> </body> </html> Result