-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.html
210 lines (202 loc) · 8.33 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Контакты - PlayStore</title>
<link href="css/normalize.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,700,800|Roboto:400,700,900,900i&subset=cyrillic" rel="stylesheet">
<link href="css/fontello.css" rel="stylesheet">
<script src="https://api-maps.yandex.ru/2.1/?lang=ru_RU" type="text/javascript"></script>
<script src="js/geo_object_collection.js" type="text/javascript"></script>
<style>
#map {
position: relative;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
.main-header {
height: 350px;
padding: 0;
}
.main-header .container {
position: absolute;
left: 50%;
z-index: 1;
transform: translateX(-50%);
}
.main-header .index-logo {
position: absolute;
top: 20px;
left: 10px;
}
.main-header .header-social {
position: absolute;
top: 20px;
right: 10px;
background-color: rgba(193, 193, 193, 0.8);
}
</style>
</head>
<body>
<header class="main-header">
<div id="map">
<div class="container clearfix">
<div class="index-logo"><a href="index.html"><img src="img/index-logo.png" width="170" height="140" alt="Play Store"></a></div>
<div class="header-social">
<a href="#"><i class="icon icon-facebook"></i></a>
<a href="#"><i class="icon icon-twitter"></i></a>
<a href="#"><i class="icon icon-youtube"></i></a>
<a href="#"><i class="icon icon-pinterest"></i></a>
<a href="#"><i class="icon icon-instagram"></i></a>
</div>
</div>
</div>
</header>
<div class="container clearfix">
<div class="to-left">
<nav class="main-menu">
<h2>Меню</h2>
<ul>
<li><a href="#">О нас</a></li>
<li><a href="#">Игровые консоли</a></li>
<li><a href="shop.html">Игры</a></li>
<li><a href="#">Аксессуары</a></li>
<li><a href="#">Распродажа</a></li>
<li><a href="#">Блог</a></li>
<li><a href="#">Контакты</a></li>
</ul>
</nav>
<div class="banner"></div>
</div>
<div class="to-right">
<main class="contacts clearfix">
<div class="breadcrumbs">
<a href="index.html">Главная</a>
<a class="active" href="#">Контакты</a>
</div>
<form class="contact-message to-left" action="">
<label for="name">Ваше имя*</label>
<input type="text" id="name" placeholder="Сергей" required>
<label for="email">Ваш email*</label>
<input type="email" id="email" placeholder="email@domen.ru" required>
<label for="company">Ваша фирма</label>
<input type="text" id="company" placeholder="ИП Дмитриев">
<label for="subject">Тема обращения*</label>
<input type="text" id="subject" placeholder="Жалоба" required>
<label for="message">Ваше письмо</label>
<textarea id="message"></textarea>
<button class="btn" type="submit">Отправить</button>
</form>
<section class="contact-address to-left">
<h2>Наш адрес</h2>
<div class="contact-location">
<i class="icon-location"></i>
<p class="location-info">Ut interdum tristique est commodo pharetra.</p>
<p>Lorem Ipsum is simply dummy text of the printing and over</p>
</div>
<div class="contact-info contact-phone"><i class="icon-phone"></i>1-900-324-9876</div>
<div class="contact-info contact-email"><i class="icon-mail"></i>info@playstore.ru</div>
<p>If you have questions about your order or need any general information our customer service team will be happy to assist you.</p>
</section>
</main>
<aside class="brandlist">
<img src="img/ubisoft-logo.png" alt="Ubisoft Logo" title="Ubisoft">
<img src="img/EA-logo.png" alt="EA Logo" title="EA">
<img src="img/nival-logo.png" alt="Nival Logo" title="Nival">
</aside>
</div>
</div>
<footer class="main-footer">
<div class="footer-top">
<div class="container">
<a href="#" class="big-btn big-btn-fb"><i class="icon icon-facebook"></i></a>
<a href="#" class="big-btn big-btn-tw"><i class="icon icon-twitter"></i></a>
<a href="#" class="big-btn big-btn-pint"><i class="icon icon-pinterest-circled"></i></a>
</div>
</div>
<div class="footer-middle">
<div class="container clearfix">
<section class="footer-column footer-menu">
<h2>Category</h2>
<ul class="menu-column">
<li><a href="#">Home</a></li>
<li><a href="#">about us</a></li>
<li><a href="#">eshop</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">new collections</a></li>
<li><a href="#">blog</a></li>
<li><a href="#">contact</a></li>
</ul>
</section>
<section class="footer-column footer-menu">
<h2>Our Account</h2>
<ul class="menu-column">
<li><a href="#">Your Account</a></li>
<li><a href="#">Personal information</a></li>
<li><a href="#">Addresses</a></li>
<li><a href="#">Discount</a></li>
<li><a href="#">Orders history</a></li>
<li><a href="#">Addresses</a></li>
<li><a href="#">Search Terms</a></li>
</ul>
</section>
<section class="footer-column footer-menu">
<h2>Our Support</h2>
<ul class="menu-column">
<li><a href="#">Site Map</a></li>
<li><a href="#">Search Terms</a></li>
<li><a href="#">Advanced Search</a></li>
<li><a href="#">Mobile</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Mobile</a></li>
<li><a href="#">Addresses</a></li>
</ul>
</section>
<section class="footer-column column-subscribe">
<h2>Newsletter</h2>
<p>Join thousands of other people subscribe to our news</p>
<form action="">
<input type="email" placeholder="Введите email">
<button type="submit">Submit</button>
</form>
<div class="pay-services">
<img src="img/aex.jpg" width="36" height="22" alt="aex">
<img src="img/mastercard.jpg" width="36" height="22" alt="mastercard">
<img src="img/maestro.jpg" width="36" height="22" alt="maestro">
<img src="img/paypal.jpg" width="36" height="22" alt="paypal">
<img src="img/discover.jpg" width="36" height="22" alt="discover">
<img src="img/visa.jpg" width="36" height="22" alt="visa">
</div>
</section>
<section class="footer-column column-about-us">
<h2>About Us</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</p>
<div class="about-us-contact"><span>Phone:</span>
<span>1-999-342-9876</span></div>
<div class="about-us-contact"><span>e-mail:</span>
<span class="contact-email">info@surfhouse.com</span></div>
</section>
</div>
</div>
<div class="footer-bottom">
<div class="container">
<div class="footer-copyright to-left">
© 2016 <span class="copyright-title">PlayStore</span>. Все права защищены
</div>
<div class="footer-social to-right">
<a href="#"><i class="icon icon-facebook"></i></a>
<a href="#"><i class="icon icon-twitter"></i></a>
<a href="#"><i class="icon icon-pinterest"></i></a>
<a href="#"><i class="icon icon-gplus"></i></a>
<a href="#"><i class="icon icon-tumblr"></i></a>
<a href="#"><i class="icon icon-instagram"></i></a>
<a href="#"><i class="icon icon-rss"></i></a>
</div>
</div>
</div>
</footer>
</body>
</html>