/
Coderdev
/
web-static-labs
Обзор
Документация
Войти
/
Coderdev
/
web-static-labs
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
html/lab5/task8/index.html
122 строки
1 KB
Coderdev
1
26 мар 2026, 23:33
26 мар 2026, 23:33
6331fa1
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="utf-8"> <title>Форма</title> <style> body{ font-family:Arial; text-align:center; background:#f2f2f2; } h3{ margin-top:40px; } form{ display:inline-block; text-align:left; background:white; padding:20px 30px; border:2px solid black; } input, select{ margin:5px 0 10px 0; padding:5px; font-size:14px; border:1px solid black; width:200px; } button{ margin-top:10px; padding:6px 15px; font-size:14px; border:1px solid black; background:#e6e6e6; cursor:pointer; } button:hover{ background:#dcdcdc; } </style> </head> <body> <h3>Форма регистрации</h3> <form> Логин<br> <input type="text" name="login" required minlength="5" maxlength="20" > <br> Пароль<br> <input type="password" name="pass" required minlength="5" maxlength="12" > <br> Возраст<br> <input type="number" name="age" min="14" max="120" step="1" > <br> Город<br> <select name="city" required> <option value=""> Не выбран </option> <option> Москва </option> <option> Краснодар </option> <option> Пермь </option> </select> <br> <button type="submit"> Отправить </button> </form> </body> </html>