Files
learning/web-design/Файлы/forms.html
2025-11-20 21:37:53 +02:00

25 lines
791 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
<link href="forms.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="main" align="center">
<h2>Ваша заявка или вопрос</h2>
<p class="field_name">Ваше имя</p>
<input type="text">
<p class="field_name">Телефон</p>
<input type="text">
<p class="field_name">Город</p>
<input type="text">
<p class="field_name">Опишите Вашу проблему</p>
<input type="text" class="problem_field">
<input type="button" value="Отправить сообщение" class="send">
<p class="last"><i>! - Все поля обязательны для заполнения</i></p>
</div>
</body>
</html>