Password checker using html css javascript
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Password Checker</title> <style> body { font-family: Arial, sans-serif; } .container { max-width: 400px; margin: 50px auto; padding: 30px; border: 2px solid #ccc; border-radius: 10px; } input[type="password"] { width: 100%; padding: 10px; margin-bottom: 10px; border: 2px solid #ccc; border-radius: 5px; transition: border-color 0.3s ease; } input[type="password"].weak { border-color: #ff4d4d; /* red */ ...