/
webtheory
/
student
Обзор
Документация
Войти
/
webtheory
/
student
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
HTML/Labs/input.html
25 строк
708 B
Jenya
Добавлен раздел CSS
10 июн 2026, 15:06
10 июн 2026, 15:06
1c049a6
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Labs Forms</title> </head> <body> <form action="/register" method="get"> <input type="text" placeholder="Введите текст"> <input type="password" placeholder="Введите пароль"> <input type="email" placeholder="email"> <input type="search" placeholder="Поиск"> <input type="tel" placeholder="+7 999 999 99 99"> <input type="button" value="Кнопка"> <br> <input type="radio" name="answer" value="a1"> <input type="button" value="Reset"> <input type="checkbox" name="" id="" value="on"> </form> </body> </html>