25 lines
791 B
HTML
25 lines
791 B
HTML
<!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> |