HTML code script for a Password strength checker

Created on 3 July, 2024 • 103 views

HTML code script for a Password strength checker

<!DOCTYPE html>

<html lang="en">

<head>

 <meta charset="UTF-8">

 <meta name="viewport" content="width=device-width, initial-scale=1.0">

 <title>Password Strength Checker</title>

 <link rel="stylesheet" href="style.css"> </head>

<body>

 <h1>Password Strength Checker</h1>

 <div class="container">

  <input type="password" id="password" placeholder="Enter your password">

  <div id="strength-message"></div>

 </div>

 <script src="script.js"></script> </body>

</html>