-
Notifications
You must be signed in to change notification settings - Fork 0
/
write-us.html
33 lines (30 loc) · 1.35 KB
/
write-us.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>HTML Academy: Девайс - Напишите нам</title>
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/style.min.css">
</head>
<body>
<section class="write-us modal modal--active">
<h2 class="visually-hidden">Форма обратной связи</h2>
<a href="index.html" class="modal__button--close" aria-label="Закрыть"></a>
<form action="https://echo.htmlacademy.ru/" method="POST">
<label class="modal__title">
Ваше имя:
<input class="write-us__input--separate" type="text" name="write-us-name" placeholder="Имя Фамилия" required>
</label>
<label class="modal__title">
Ваш e-mail:
<input class="write-us__input--separate" type="email" name="write-us-email" placeholder="email@example.com" required>
</label>
<label class="modal__title">
Текст письма:
<textarea class="write-us__input--separate" name="write-us-text" cols="760" rows="8" placeholder="В свободной форме" required></textarea>
</label>
<button class="button button--modal" type="submit">отправить</button>
</form>
</section>
</body>
</html>