-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
108 lines (108 loc) · 6.13 KB
/
contacts.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
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Контакты</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/media-queries.css">
<link href="https://fonts.googleapis.com/css?family=PT+Serif&subset=cyrillic-ext" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="js/popup.js" defer></script>
</head>
<body>
<header class="page-header">
<div class="container clearfix">
<div class="row clearfix">
<div class="logo left-col">
<a href="index.html"><img src="img/bikegang-logo-white.png" alt="Bike Gang logo" title="Bike Gang"></a>
</div>
<div class="social">
<a class="social-btn social-btn-fb" href="#">facebook</a>
<a class="social-btn social-btn-tw" href="#">twitter</a>
<a class="social-btn social-btn-inst" href="#">instagram</a>
<a class="social-btn social-btn-google" href="#">google</a>
<a class="social-btn social-btn-tumblr" href="#">tumblr</a>
</div>
</div>
<div class="row clearfix">
<nav class="main-menu left-col">
<ul>
<li>
<a href="index.html">Главная</a>
</li>
<li>
<a href="catalog.html">Каталог</a>
</li>
<li>
<a href="about-us.html">О нас</a>
</li>
<li>
<a class="active-page" href="#">Контакты</a>
</li>
</ul>
</nav>
<div class="user-block right-col">
<a class="login" href="registration.html">Вход</a>
</div>
</div>
</div>
</header>
<main class="container">
<h2>Напишите нам</h2>
<form class="contact-us" action="/echo/html/" method="post">
<fieldset>
<legend>Отправить сообщение</legend><br>
<input type="text" name="first-name" placeholder="Ваше имя" required autofocus> <span class="required-symbol">*</span><br><br>
<input type="email" name="e-mail" placeholder="Ваш e-mail"><br><br>
<input type="tel" name="phone-number" placeholder="Номер телефона"><br><br>
<input type="text" name="message-theme" placeholder="Тема обращения" required> <span class="required-symbol">*</span><br><br>
<textarea name="message" placeholder="Напишите ваше сообщение" required></textarea> <span class="required-symbol">*</span><br>
<i class="required-symbol-note">* - поля, обязательные для заполнения</i><br><br>
<button type="submit">Отправить</button>
</fieldset>
</form>
<section class="location">
<h2>Адрес</h2>
<div class="location-contacts">
+7 (863) 290-80-70<br>
ул. 2-я Краснодарская 10, г. Ростов-на-Дону<br>
</div>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2710.3694167317994!2d39.657686315745146!3d47.20935362332773!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x40e3b92a8bb9e0bf%3A0x8a2dad11de44a47f!2zMi3RjyDQmtGA0LDRgdC90L7QtNCw0YDRgdC60LDRjyDRg9C7LiwgMTAsINCg0L7RgdGC0L7Qsi3QvdCwLdCU0L7QvdGDLCDQoNC-0YHRgtC-0LLRgdC60LDRjyDQvtCx0LsuLCAzNDQwMDQ!5e0!3m2!1sru!2sru!4v1473750225748" width="100%" height="250" frameborder="0" style="border:0" allowfullscreen></iframe>
</section>
</main>
<footer class="page-footer">
<div class="container clearfix">
<div class="copyright">
© 2016 «BikeGang». Все права защищены
</div>
<div class="social">
<a class="social-btn social-btn-fb" href="#">facebook</a>
<a class="social-btn social-btn-tw" href="#">twitter</a>
<a class="social-btn social-btn-inst" href="#">instagram</a>
<a class="social-btn social-btn-google" href="#">google</a>
<a class="social-btn social-btn-tumblr" href="#">tumblr</a>
</div>
</div>
</footer>
<div class="modal-content">
<button class="modal-content-close" type="button" title="close">Закрыть</button>
<h2 class="modal-content-title">Личный кабинет</h2>
<p>Введите свой логин и пароль</p>
<form action="https://echo.htmlacademy.ru" class="login-form" method="post">
<input type="text" class="icon-user" name="login" placeholder="Логин">
<input type="password" class="icon-password" name="password" placeholder="Пароль">
<label class="login-checkbox">
<input type="checkbox" name="remember">
<span class="checkbox-indicator"></span>
Запомните меня
</label>
<a class="restore" href="#">Я забыл пароль!</a>
<button class="btn" type="submit">Войти</button>
<a class="btn" href="registration.html">Зарегистрироваться</a>
</form>
</div>
<div class="modal-overlay"></div>
</body>
</html>