-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedback-popup.html
35 lines (33 loc) · 1.38 KB
/
feedback-popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>HTML Academy: Девайс</title>
<link href="css/normalize.min.css" rel="stylesheet">
<link href="css/style.min.css" rel="stylesheet">
</head>
<body>
<!--Модальное окно с формой обратной связи-->
<div class="feedback-popup-structure popup-overlay popup-show">
<div class="feedback-popup gxb s18">
<form action="echo" method="post">
<div class="name-mail">
<div>
<label for="name">Ваше имя:</label>
<input class="osl s14 hover-form" type="text" placeholder="Представьтесь, пожалуйста" name="name" id="name" required>
</div>
<div>
<label for="email">Ваш e-mail:</label>
<input class="osl s14 hover-form" type="email" placeholder="Для отправки ответа" name="email" id="email" autocomplete="on" required>
</div>
</div>
<div>
<label for="letter">Текст письма:</label>
<textarea class="osl s14 hover-form" name="letter" id="letter" placeholder="В свободной форме" required></textarea>
</div>
<button class="btn" type="submit">Отправить</button>
</form>
</div>
</div>
</body>
</html>