-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalog.html
More file actions
268 lines (252 loc) · 17.6 KB
/
Copy pathcatalog.html
File metadata and controls
268 lines (252 loc) · 17.6 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
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>NЁRDS</title>
<link rel="stylesheet" href="css/normalize.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body class="inner-page">
<header class="main-header">
<div class="container">
<nav class="main-navigation">
<a href="index.html" class="logo">
<img src="img/nerds-logo.svg" alt="Логотип дизайн студии NЁRDS" width="160" height="65">
</a>
<ul class="site-navigation">
<li><a href="">Студия</a></li>
<li><a href="">Клиенты</a></li>
<li><a href="">Магазин</a></li>
<li><a href="">Контакты</a></li>
</ul>
<div class="cart">
<a href="">Корзина</a>
</div>
</nav>
<h1 class="catalog-title">Магазин готовых шаблонов</h1>
</div>
</header>
<main class="container">
<section class="catalog-section">
<div class="catalog-column-left">
<form action="" class="catalog-filter">
<fieldset class="filter-item filter-range">
<legend>Стоимость:</legend>
<div class="range-filter">
<div class="range-controls">
<div class="scale">
<div class="bar"></div>
</div>
<div class="toggle toggle-min"></div>
<div class="toggle toggle-max"></div>
</div>
<div class="price-controls">
<label class="min-price">ОТ<input type="text" name="price-min" value="0"></label>
<label class="max-price">ДО<input type="text" name="price-max" value="15000"></label>
</div>
</div>
</fieldset>
<fieldset class="filter-item">
<legend>Сетка:</legend>
<ul class="filter-option-list">
<li class="filter-option-item">
<input class=" filter-input filter-input-radio visually-hidden" type="radio" name="layout-button" id="filter-adaptive" checked disabled >
<label for="filter-adaptive">Адаптивная</label>
</li>
<li class="filter-option-item">
<input class="filter-input filter-input-radio visually-hidden" type="radio" name="layout-button" id="filter-fixed">
<label for="filter-fixed">Фиксированная</label>
</li>
<li class=" filter-option-item">
<input class="filter-input filter-input-radio visually-hidden" type="radio" name="layout-button" id="filter-stretch">
<label for="filter-stretch">Резиновая</label>
</li>
</ul>
</fieldset>
<fieldset class="filter-item">
<legend>Особенности:</legend>
<ul class="filter-option-list">
<li class="filter-option-item">
<input class="filter-input filter-input-checkbox visually-hidden" type="checkbox" name="filter-slider" id="filter-slider">
<label for="filter-slider">Слайдер</label>
</li>
<li class="filter-option-item">
<input class="filter-input filter-input-checkbox visually-hidden" type="checkbox" name="filter-advantages" id="filter-advantages">
<label for="filter-advantages">Блок преимуществ</label>
</li>
<li class="filter-option-item">
<input class="filter-input filter-input-checkbox visually-hidden" type="checkbox" name="filter-news" id="filter-news">
<label for="filter-news">Новости</label>
</li>
<li class="filter-option-item">
<input class="filter-input filter-input-checkbox visually-hidden" type="checkbox" name="filter-gallery" id="filter-gallery">
<label for="filter-gallery">Галерея</label>
</li>
<li class="filter-option-item">
<input class="filter-input filter-input-checkbox visually-hidden" type="checkbox" name="filter-card" id="filter-card" disabled>
<label for="filter-card">Корзина</label>
</li>
</ul>
</fieldset>
<button class="button button-grey" type="submit">Показать</button>
</form>
</div>
<div class="catalog-column-right">
<div class="catalog-sort-wrapper">
<b>Сортировать:</b>
<ul class="catalog-sort-list">
<li class="catalog-sort-item catalog-sort-item-selected"><a href="">По цене</a></li>
<li class="catalog-sort-item"><a href="">По типу</a></li>
<li class="catalog-sort-item"><a href="">По названию</a></li>
</ul>
<ul class="catalog-sort-buttons">
<li><a href="" class="sort-button sort-button-down "><span class="visually-hidden">По убыванию</span></a></li>
<li><a href="" class="sort-button sort-button-up sort-button-selected"><span class="visually-hidden">По возрастанию</span></a></li>
</ul>
</div>
<ul class="products-list">
<li class="products-item">
<svg xmlns="http://www.w3.org/2000/svg" width="360" height="40" viewBox="0 0 360 40"><path fill="#4D4D4D" d="M356 0H4C1.8 0 0 1.8 0 4v36h360V4c0-2.2-1.8-4-4-4zM22.991 27a7 7 0 1 1 0-14 7 7 0 0 1 0 14zm23.011 0a7 7 0 1 1 0-14 7 7 0 0 1 0 14zm23.011 0a7 7 0 1 1 0-14 7 7 0 0 1 0 14z"/></svg>
<img src="img/img-sedona.jpg" alt="Сайт Sedona" class="product-image" width="360" height="576">
<div class="products-description">
<h3 class="product-name"> <a href="">Sedona</a></h3>
<p>Информационный сайт
для туристов</p>
<a class="button button-red">9900 РУБ.</a>
</div>
</li>
<li class="products-item">
<svg xmlns="http://www.w3.org/2000/svg" width="360" height="40" viewBox="0 0 360 40"><path fill="#4D4D4D" d="M356 0H4C1.8 0 0 1.8 0 4v36h360V4c0-2.2-1.8-4-4-4zM22.991 27a7 7 0 1 1 0-14 7 7 0 0 1 0 14zm23.011 0a7 7 0 1 1 0-14 7 7 0 0 1 0 14zm23.011 0a7 7 0 1 1 0-14 7 7 0 0 1 0 14z"/></svg>
<img src="img/img-pink.jpg" alt="Сайт Pink" class="product-image" width="360" height="578">
<div class="products-description">
<h3 class="product-name"><a href="">Pink App</a></h3>
<p>Продуктовый лендинг приложения для iOS и Android</p>
<a class="button button-red">9900 РУБ.</a>
</div>
</li>
<li class="products-item">
<svg xmlns="http://www.w3.org/2000/svg" width="360" height="40" viewBox="0 0 360 40"><path fill="#4D4D4D" d="M356 0H4C1.8 0 0 1.8 0 4v36h360V4c0-2.2-1.8-4-4-4zM22.991 27a7 7 0 1 1 0-14 7 7 0 0 1 0 14zm23.011 0a7 7 0 1 1 0-14 7 7 0 0 1 0 14zm23.011 0a7 7 0 1 1 0-14 7 7 0 0 1 0 14z"/></svg>
<img src="img/img-barbershop.jpg" alt="Сайт Barbershop" class="product-image" width="360" height="576">
<div class="products-description">
<h3 class="product-name"><a href="">Barbershop</a></h3>
<p>Сайт салоны красоты. Для мужчин, да.</p>
<a class="button button-red">9900 РУБ.</a>
</div>
</li>
<li class="products-item">
<svg xmlns="http://www.w3.org/2000/svg" width="360" height="40" viewBox="0 0 360 40"><path fill="#4D4D4D" d="M356 0H4C1.8 0 0 1.8 0 4v36h360V4c0-2.2-1.8-4-4-4zM22.991 27a7 7 0 1 1 0-14 7 7 0 0 1 0 14zm23.011 0a7 7 0 1 1 0-14 7 7 0 0 1 0 14zm23.011 0a7 7 0 1 1 0-14 7 7 0 0 1 0 14z"/></svg>
<img src="img/img-mishka.jpg" alt="Сайт Mishka" class="product-image" width="360" height="576">
<div class="products-description">
<h3 class="product-name"><a href="">Mishka</a></h3>
<p>Интернет-магазин вязаных игрушек</p>
<a class="button button-red">9900 РУБ.</a>
</div>
</li>
<li class="products-item">
<svg xmlns="http://www.w3.org/2000/svg" width="360" height="40" viewBox="0 0 360 40"><path fill="#4D4D4D" d="M356 0H4C1.8 0 0 1.8 0 4v36h360V4c0-2.2-1.8-4-4-4zM22.991 27a7 7 0 1 1 0-14 7 7 0 0 1 0 14zm23.011 0a7 7 0 1 1 0-14 7 7 0 0 1 0 14zm23.011 0a7 7 0 1 1 0-14 7 7 0 0 1 0 14z"/></svg>
<img src="img/img-aplus.jpg" alt="Сайт A Plus" class="product-image" width="360" height="576">
<div class="products-description">
<h3 class="product-name"><a href="">A plus</a></h3>
<p>Лендинг курсов повышения квалификации</p>
<a class="button button-red">9900 РУБ.</a>
</div>
</li>
<li class="products-item">
<svg xmlns="http://www.w3.org/2000/svg" width="360" height="40" viewBox="0 0 360 40"><path fill="#4D4D4D" d="M356 0H4C1.8 0 0 1.8 0 4v36h360V4c0-2.2-1.8-4-4-4zM22.991 27a7 7 0 1 1 0-14 7 7 0 0 1 0 14zm23.011 0a7 7 0 1 1 0-14 7 7 0 0 1 0 14zm23.011 0a7 7 0 1 1 0-14 7 7 0 0 1 0 14z"/></svg>
<img src="img/img-kvast.jpg" alt="Сайт Kvast" class="product-image" width="360" height="576">
<div class="products-description">
<h3 class="product-name"><a href="">Кваст</a></h3>
<p>Промо-сайт производителя крафтового кваса</p>
<div class="button button-red">9900 РУБ.</div>
</div>
</li>
</ul>
<ul class="pagination-list">
<li class="pagination-item pagination-item-current"><a href="" class="pagination-button">1</a></li>
<li class="pagination-item"><a href="" class="pagination-button">2</a></li>
<li class="pagination-item"><a href="" class="pagination-button">3</a></li>
<li class="pagination-item pagination-item-next"><a href="" class="pagination-button">Следующая</a></li>
</ul>
</div>
</section>
</main>
<footer class="main-footer">
<section class="footer-top">
<h2 class="visually-hidden">Контакты</h2>
<div class="map-container">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1413.22008137255!2d30.32161108924505!3d59.93886218829035!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4696310fca5ba729%3A0xea9c53d4493c879f!2sBolshaya%20Konyushennaya%20St%2C%2019%2C%20Sankt-Peterburg%2C%20Russia%2C%20191186!5e0!3m2!1sen!2sus!4v1570615066419!5m2!1sen!2sus" height="416" frameborder="0" style="border:0;" allowfullscreen=""></iframe>
<img src="img/footer-map.jpg" alt="Карта" class="footer-map" height="416">
</div>
<div class="container">
<article class="footer-contacts">
<h2>NЁRDS DESIGN STUDIO</h2>
<p class="address">191186, Санкт-Петербург, <br>
ул. Б. Конюшенная, д. 19/8</p>
<p class="telephone">
тел. +7 (812) 275-75-75
</p>
<a href="" class="button button-red" id="modal-appeal-link">Напишите нам</a>
</article>
<div class="map-marker">
</div>
</div>
</section>
<div class="container">
<section class="footer-bottom">
<h2 class="visually-hidden">Социальные сети</h2>
<ul class="social-links">
<li>
<a href="vk.com" class="social-button">
<svg xmlns="http://www.w3.org/2000/svg" width="26" height="15" viewBox="0 0 26 15"><path fill="#FFF" d="M16.138 11.51c.956-.309 2.18 2.04 3.483 2.939.978.681 1.727.534 1.727.534l3.473-.05s1.815-.112.957-1.554c-.071-.12-.503-1.069-2.585-3.022-2.177-2.043-1.882-1.712.739-5.244 1.597-2.153 2.236-3.468 2.036-4.028-.192-.539-1.365-.399-1.365-.399L20.69.713c-.381.001-.704.119-.851.515-.003.004-.621 1.666-1.445 3.079-1.741 2.989-2.436 3.148-2.724 2.961-.661-.433-.494-1.737-.494-2.664 0-2.897.432-4.105-.846-4.417-.427-.104-.739-.172-1.828-.182-1.392-.021-2.574 0-3.244.329-.445.223-.786.712-.579.74.26.035.843.16 1.155.586.401.552.389 1.789.389 1.789s.229 3.411-.54 3.834c-.528.29-1.25-.302-2.803-3.016-.793-1.388-1.392-2.922-1.392-2.922s-.116-.285-.326-.441c-.25-.185-.6-.244-.6-.244L.848.684S.29.7.085.946c-.182.218-.015.668-.015.668s2.909 6.881 6.203 10.347c3.02 3.182 6.452 2.971 6.452 2.971h1.555s.469-.054.709-.312c.224-.24.214-.691.214-.691s-.031-2.109.935-2.419z"/></svg>
<span class="visually-hidden">Вконтакте</span>
</a>
</li>
<li>
<a href="facebook.com" class="social-button">
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="22" viewBox="0 0 12 22"><path fill="#FFF" d="M12 4V0H8a4 4 0 0 0-4 4v4H0v4h4v10h4V12h4V8H8V4h4z"/></svg>
<span class="visually-hidden">Фейсбук</span>
</a>
</li>
<li>
<a href="instagram.com" class="social-button">
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="21" viewBox="0 0 21 21"><path fill="#FFF" d="M18 0H3C1.35 0 0 1.35 0 3v15c0 1.65 1.35 3 3 3h15c1.65 0 3-1.35 3-3V3c0-1.65-1.35-3-3-3zm-7.5 7c1.93 0 3.5 1.57 3.5 3.5S12.43 14 10.5 14 7 12.43 7 10.5 8.57 7 10.5 7zM18 18H3V9h1.181A6.504 6.504 0 0 0 4 10.5a6.5 6.5 0 1 0 13 0 6.45 6.45 0 0 0-.181-1.5H18v9zm0-11h-4V3h4v4z"/></svg>
<span class="visually-hidden">Инстаграм</span>
</a>
</li>
</ul>
<p class="footer-tagline">
<b>
Давайте дружить, это выгодно!
</b>
Скидка 10% для друзей из социальных сетей.
</p>
</section>
</div>
</footer>
<section class="modal modal-appeal">
<h2>Напишите нам</h2>
<form action="https://htmlacademy.ru/echo" class="appeal-form">
<p class="appeal-item">
<label for="name">Ваше имя:</label>
<input type="text" name="name" id="name" placeholder="Имя Фамилия">
</p>
<p class="appeal-item">
<label for="email">Ваш e-mail:</label>
<input type="email" name="email" id="email" placeholder="E-mail">
</p>
<p class="appeal-item textarea">
<label for="message">Текст письма:</label>
<textarea name="message" id="message" placeholder="В свободной форме"></textarea>
</p>
<button class="button button-red" type="submit" id="submit-button">Отправить</button>
</form>
<button class="modal-close" type="button">Закрыть</button>
</section>
<div class="overlay">
</div>
<script src="scripts/app.js"></script>
</body>
</html>