-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatalog.html
306 lines (302 loc) · 19.1 KB
/
catalog.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
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Design studio "NЁRDS" </title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body class="inner-page">
<header class="main-header">
<nav class="main-navigation">
<div class="main-navigation-wrapper">
<div class="container">
<a class="main-header-logo">
<img src="svg/nerds-logo.svg" alt="NЁRDS design studio logo">
</a>
<ul class="site-navigation">
<li> <a href="index.html"> Studio </a> </li>
<li> <a href="clients.html"> Clients </a> </li>
<li class="site-navigation-current"> <a> Shop </a> </li>
<li> <a href="contacts.html"> Contacts </a> </li>
</ul>
<ul class="user-navigation">
<li>
<a class="cart-link" href="cart.html"> Shopping cart </a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<h1 class="page-title">Shop of ready-made templates </h1>
<div class="container">
<div class="catalog-columns">
<section class="filters">
<h2 class="visually-hidden"> Product Filter </h2>
<form class="filter" method="get" action="https://echo.htmlacademy.ru">
<fieldset class="filter-item">
<legend> Cost: </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">from<input name="min-price" type="text" value="0"> </label>
<label class="max-price">to<input name="max-price" type="text" value="15000"> </label>
</div>
</div>
</fieldset>
<fieldset>
<legend> Grid: </legend>
<ul>
<li class="filter-option">
<input class="visually-hidden filter-input filter-input-radio" type="radio" name="grid-group" value="adaptive" id="filter-adaptive">
<label for="filter-adaptive"> Adaptive </label>
</li>
<li class="filter-option">
<input class="visually-hidden filter-input filter-input-radio" type="radio" name="grid-group" value="fixed" id="filter-fixed" checked>
<label for="filter-fixed"> Fixed </label>
</li>
<li class="filter-option">
<input class="visually-hidden filter-input filter-input-radio" type="radio" name="grid-group" value="rubber" id="filter-rubber">
<label for="filter-rubber"> Rubber </label>
</li>
</ul>
</fieldset>
<fieldset>
<legend> Features: </legend>
<ul>
<li class="filter-option">
<input class="visually-hidden filter-input filter-input-checkbox" type="checkbox" name="slider" id="filter-slider" checked>
<label for="filter-slider"> Slider </label>
</li>
<li class="filter-option">
<input class="visually-hidden filter-input filter-input-checkbox" type="checkbox" name="benefits-block" id="filter-benefits-block">
<label for="filter-benefits-block">Advantage block</label>
</li>
<li class="filter-option">
<input class="visually-hidden filter-input filter-input-checkbox" type="checkbox" name="news" id="filter-news" checked>
<label for="filter-news"> News </label>
</li>
<li class="filter-option">
<input class="visually-hidden filter-input filter-input-checkbox" type="checkbox" name="gallery" id="filter-gallery">
<label for="filter-gallery"> Gallery </label>
</li>
<li class="filter-option">
<input class="visually-hidden filter-input filter-input-checkbox" type="checkbox" name="cart" id="filter-cart">
<label for="filter-cart"> Cart </label>
</li>
</ul>
</fieldset>
<button type="submit" class="filter-button button"> Show </button>
</form>
</section>
<section class="catalog">
<h2 class="visually-hidden"> Template List </h2>
<div class="sorting">
<h3> Sort: </h3>
<div class="sorting-columns">
<ul>
<li> <a href="#sort-price" class="button__sorting button__sorting-current"> By price </a>
</li>
<li> <a href="#sort-type" class="button__sorting"> By type </a> </li>
<li> <a href="#sort-name" class="button__sorting"> By name </a> </li>
</ul>
<ul>
<li> <a href="#sort-down" class="sort-down button__sorting"> descending </a> </li>
<li> <a href="#sort-up" class="sort-up button__sorting"> ascending </a> </li>
</ul>
</div>
</div>
<ul class="catalog-items">
<li class="catalog-item">
<a href="catalog-item.html">
<div class="catalog-item-browser"> </div>
<p class="catalog-item-image">
<img src="img/img-sedona.jpg" width="360" height="576" alt="Sedona">
</p>
</a>
<div class="catalog-item-price catalog-item-price_show">
<a href="catalog-item.html">
Sedona
</a>
<p> Information site <br>
for tourists
</p>
<a class="button button-long" href="#">9 900₽</a>
</div>
</li>
<li class="catalog-item">
<a href="catalog-item.html">
<div class="catalog-item-browser"> </div>
<p class="catalog-item-image">
<img src="img/img-pink.jpg" width="360" height="576" alt="Sedona">
</p>
</a>
<div class="catalog-item-price catalog-item-price_hide">
<a href="catalog-item.html">
Pink App
</a>
<p> Product Landing Page <br>
iOS and Android apps
</p>
<a class="button button-long" href="#"> 9 900₽ </a>
</div>
</li>
<li class="catalog-item">
<a href="catalog-item.html">
<div class="catalog-item-browser"> </div>
<p class="catalog-item-image">
<img src="img/img-barbershop.jpg" width="360" height="576" alt="Sedona">
</p>
</a>
<div class="catalog-item-price catalog-item-price_hide">
<a href="catalog-item.html">
Barbershop</a>
<p> Site of beauty salons. <br>
For men, yes.
</p>
<a class="button button-long" href="#"> 9 900₽ </a>
</div>
</li>
<li class="catalog-item">
<a href="catalog-item.html">
<div class="catalog-item-browser"> </div>
<p class="catalog-item-image">
<img src="img/img-mishka.jpg" width="360" height="576" alt="Sedona">
</p>
</a>
<div class="catalog-item-price catalog-item-price_hide">
<a href="catalog-item.html">
MISHKA
</a>
<p> Online store <br>
knitted toys
</p>
<a class="button button-long" href="#"> 9 900₽ </a>
</div>
</li>
<li class="catalog-item">
<a href="catalog-item.html">
<div class="catalog-item-browser"> </div>
<p class="catalog-item-image">
<img src="img/img-aplus.jpg" width="360" height="576" alt="Sedona">
</p>
</a>
<div class="catalog-item-price catalog-item-price_hide">
<a href="catalog-item.html">
A Plus
</a>
<p> Landing page for improvement courses <br>
qualifications
</p>
<a class="button button-long" href="#"> 9 900₽ </a>
</div>
</li>
<li class="catalog-item">
<a href="catalog-item.html">
<div class="catalog-item-browser"> </div>
<p class="catalog-item-image">
<img src="img/img-kvast.jpg" width="360" height="576" alt="Sedona">
</p>
</a>
<div class="catalog-item-price catalog-item-price_hide">
<a href="catalog-item.html">
QUAST
</a>
<p> Promotional site of the manufacturer <br>
craft kvass
</p>
<a class="button button-long" href="#"> 9 900₽ </a>
</div>
</li>
</ul>
<ul class="pagination-list">
<li class="pagination-item pagination-item-current"> <a>1</a> </li>
<li class="pagination-item"> <a href="#">2</a> </li>
<li class="pagination-item"> <a href="#">3</a> </li>
<li class="pagination-item"> <a href="#">Next</a> </li>
</ul>
</section>
</div>
</div>
</main>
<footer class="main-footer">
<section class="footer-contacts">
<h2 class="visually-hidden"> Contacts </h2>
<div class="footer-contacts__map">
<figure>
<img src="img/map.jpg" width="1440" heigth="416" alt="Map"> </a>
</figure>
<!-- Here's a map -->
</div>
<div class="footer-contacts__text">
<h3> NЁRDS DESIGN STUDIO </h3>
<p> 191186, St. Petersburg, <br>
st. B. Konyushennaya, 19/8 </p>
<p> tel. +7 (812) 275-75-75 </p>
<button class="write-us button"> Email us </button>
</div>
</section>
<div class="container">
<section class="footer-social">
<ul>
<li><a href="#" class="social-button">
<span class="visually-hidden">Vkontakte</span>
<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>
</a></li>
<li><a href="#" class="social-button">
<span class="visually-hidden">Facebook</span>
<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>
</a></li>
<li><a href="#" class="social-button">
<span class="visually-hidden">Instagram</span>
<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>
</a></li>
</ul>
<p>
<b class="footer-slogan"> Let's be friends, it's profitable! </b>
10% discount for friends from social networks.
</p>
</section>
</div>
</footer>
<section class="modal modal-appointment">
<h2> Email us </h2>
<form class="appointment-form" action="https://echo.htmlacademy.ru" method="post">
<p class="appointment-item">
<label for="appointment-name"> Your name: </label>
<input id="appointment-name" type="text" name="name" value="" placeholder="First name Last name">
</p>
<p class="appointment-item">
<label for="appointment-email"> Your e-mail </label>
<input id="appointment-email" type="text" name="email" placeholder="[email protected]">
</p>
<p class="appointment-item">
<label for="appointment-text"> Email body </label>
<textarea name="text" id="appointment-text" cols="30" rows="10" placeholder="Free-form"> </textarea>
</p>
<button class="button button-long" type="submit"> Submit </button>
</form>
<svg class="modal-close" xmlns="http://www.w3.org/2000/svg" width="21" height="21" viewBox="0 0 21 21">
<path fill="#FB565A" d="M13.328 10.5l7.371-7.371a1.003 1.003 0 0 0 0-1.414L19.285.3a1.003 1.003 0 0 0-1.414 0L10.5 7.672 3.129.301a1.003 1.003 0 0 0-1.414 0L .301 1.715a1.003 1.003 0 0 0 0 1.414L7.672 10.5.301 17.871a1.003 1.003 0 0 0 0 1.414l1.415 1.414a1.003 1.003 0 0 0 1.414 0l7.371-7.371 7.371 7.371a1.003 1.003 0 0 0 1.414 0l1.414-1.414a1.003 1.003 0 0 0 0-1.414L13.328 10.5z " />
</svg>
</section>
<script src="js/scripts.js"> </script>
</body>
</html>