-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
112 lines (95 loc) · 3.08 KB
/
contact.html
File metadata and controls
112 lines (95 loc) · 3.08 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/feedback.css">
<title>Контакты FreeSport</title>
</head>
<body>
<div class="header">
<h1>FreeSport</h1>
</div>
<div class="logo_menu">
<div class="div_logo">
<img src="logo/main-logo.png">
</div>
<div class="menu_div">
<ul class="menu_list">
<li>
<a href="index.html">Главная</a>
<ul>
<li><a href="#">Велосипеды горные</a></li>
<li><a href="#">Велосипеды круизеры</a></li>
<li><a href="#">Велосипеды складные</a></li>
</ul>
</li>
<li><a href="catalog.html">Каталог</a></li>
<li><a href="contact.html">Контакты</a></li>
</ul>
</div>
</div>
<div class="container">
<form class="contact_form">
<fieldset class="border">
<legend>Обратная связь</legend>
<table>
<tr>
<td><b>Имя:</b></td>
<td>
<input type="text" name="uname" required pattern="^[a-zA-Zа-яА-Я]+$" />
</td>
</tr>
<tr>
<td><b>Email:</b></td>
<td>
<input type="email" name="email" required pattern="^([a-z0-9_-]+\.)*[a-z0-9_-]+@[a-z0-9_-]+(\.[a-z0-9_-]+)*\.[a-z]{2,6}$">
</td>
</tr>
<tr>
<td><b>Тема:</b></td>
<td>
<select name="theme">
<option value="1">Благодарность</option>
<option value="2">Жалоба</option>
<option value="3">Предложение</option>
</select>
</td>
</tr>
<tr>
<td><b>Текст обращения:</b></td>
<td>
<textarea name="utext" rows="3" cols="40" required placeholder='Введите текст'></textarea>
</td>
</tr>
<tr>
<td colspan="2" >
<input type="submit" name="send" value="Отправить" />
</td>
</tr>
</table>
</fieldset>
</form>
<h2>Адрес</h2>
<p>
<b>FreeSport Казань</b><br>
101010, Космический район, ул. Космонавтов, 999, магазин FreeSport.
</p>
<p>
<h3>Единый Центр поддержки клиентов FreeSport Россия</h3>
Телефон: 9 900 999 99 66 (бесплатно) или +7 111 111 11 66
</p>
<div class="map_div">
<script type="text/javascript" charset="utf-8" async src="https://api-maps.yandex.ru/services/constructor/1.0/js/?sid=_stPePyQRNvviT6FF4ua0MkEo3dOXg8h&width=100%&height=414&lang=ru_RU&sourceType=constructor&scroll=true"></script>
</div>
<br><br>
</div>
<div class="feedback">
<img src="images/feedback.jpg" alt="" width="100" height="100">
Если у вас возникли вопросы по этому коду, можно написать мне на почту <a href="mailto:rustik1001@rambler.ru">rustik1001@rambler.ru</a>.
</div>
<div class="footer">
Copyright © 2016 Rustem Sabitov. ВСЕ ПРАВА ЗАЩИЩЕНЫ.
</div>
</body>
</html>