/
Coderdev
/
web-static-labs
Обзор
Документация
Войти
/
Coderdev
/
web-static-labs
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
html/lab4/task8/string.html
44 строки
1 KB
Coderdev
1
12 май 2026, 12:37
12 май 2026, 12:37
d8ecd0f
Код
Авторство
О чём код?
<!doctype html> <html lang="ru"> <head> <meta charset="utf-8" /> <title>Задание 8. Индикатор пароля</title> <style> body { font-family: sans-serif; padding: 20px; } #passInput { width: 120px; padding: 5px; margin-bottom: 5px; display: block; } #strength-meter { display: flex; gap: 1px; height: 5px; margin-top: 5px; visibility: hidden; } .segment { width: 10px; height: 5px; background-color: #eee; } .red { background-color: red; } .yellow { background-color: yellow; } .green { background-color: green; } table { margin-top: 20px; border-collapse: collapse; font-size: 12px; } td, th { border: 1px solid #ccc; padding: 5px; } </style> </head> <body> <input type="text" id="passInput" placeholder="Пароль" /> <div id="strength-meter"> </div> <div id="totalScore" style="margin-top: 10px; font-weight: bold;"></div> <script src="string.js"></script> </body> </html>