/
webtheory
/
student
Обзор
Документация
Войти
/
webtheory
/
student
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
HTML/Forms/textarea.html
70 строк
1 KB
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>Textarea</title> <style> *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } body { padding: 50px; background-color: #18191C; color: #FFFFFF; font-size: 18px; font-family: "Roboto", sans-serif; } .form { width: 500px; margin: auto; } .input-label { display: block; margin-bottom: 25px; font-size: 24px; font-weight: 500; line-height: 1; } .input-textarea { width: 100%; border: 1px solid #ffffff; border-radius: 6px; padding: 10px 15px; background-color: transparent; color: #ffffff; font-family: inherit; font-size: inherit; font-weight: 300; overflow-x: hidden; } .input-textarea:focus { border-color: #FF8630; outline: none; } </style> </head> <body> <form class="form" action=""> <label class="input-label" for="story">Расскажите о себе:</label> <textarea class="input-textarea" id="story" name="story" rows="4" cols="33">Фронтенд-разработчик со стажем</textarea> </form> </body> </html>