-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedback.html
71 lines (71 loc) · 2.71 KB
/
feedback.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Обратная связь - Портфолио</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="wrapper head">
<a href="index.html" class="logo">Портфолио</a>
<menu>
<li><a href="index.html">Главная</a></li>
<li><a href="about.html">Информация</a></li>
<li><a href="feedback.html">Обратная связь</a></li>
<li><a href="contacts.html">Контакты</a></li>
</menu>
</div>
</header>
<article>
<div class="wrapper">
<h1>Обратная связь</h1>
<p>
Для более подробной информации можете оставить комментарий на сайте.
</p>
<label for="feedback" class="button">Обратная связь</label>
<input type="checkbox" id="feedback">
<div class="inline" id="form">
<form action="">
<div class="input">
<label for="name">Имя:</label>
<input id="name" type="text" placeholder="Александр" required="required">
</div>
<div class="input">
<label for="tel">Телефон:</label>
<input id="tel" type="tel" list="telList" placeholder="+7 (900) 000-00-00" pattern="\+7\s?[\(]{0,1}9[0-9]{2}[\)]{0,1}\s?\d{3}[-]{0,1}\d{2}[-]{0,1}\d{2}" required="required">
<datalist id="telList">
<option value="+7 (900) 123-45-67" label="Телефонный номер №1"></option>
</datalist>
</div>
<div class="input">
<label for="Email">Email:</label>
<input id="E-mail" type="email" placeholder="Nanord@yandex.ru" required="required"><br>
</div>
<div class="input txtarea">
<label for="Message">Ваше сообщение:</label>
<textarea id="msg" name="msg" class="txtarea" placeholder="Ваше сообщение:"></textarea>
</div>
<br>
<div class="input button">
<input type="submit">
<input type="reset">
</div>
</form>
</div>
<div class="warning">
<p>
НЕ РАБОТАЕТ ОТПРАВКА СООБЩЕНИЙ! ВЕДУТСЯ РАБОТЫ ПО УСТРАНЕНИЮ НЕПЛОДКОВ. СПАСИБО ЗА ОЖИДАНИЕ.
</p>
</div>
</div>
</article>
<footer>
<div class="wrapper">
<div class="copyright">2016 © Nanord</div>
</div>
</footer>
</body>
</html>