-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
254 lines (239 loc) · 10.1 KB
/
shop.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
<!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">
</head>
<body>
<header class="site-header">
<div class="container clearfix">
<nav class="site-navigation column column--nine-quarters">
<ul class="site-navigation__list clearfix">
<li class="site-navigation__item">
<div class="logo logo--nav">
<a href="index.html">
<img src="img/pic__logo--header.gif" width="111" height="24" alt="Barbershop">
</a>
</div>
</li>
<li class="site-navigation__item">
<a href="#">Информация</a>
</li>
<li class="site-navigation__item">
<a href="#">Новости</a>
</li>
<li class="site-navigation__item">
<a href="#">Прайс-лист</a>
</li>
<li class="site-navigation__item">
<a href="shop.html">Магазин</a>
</li>
<li class="site-navigation__item">
<a href="#">Контакты</a>
</li>
</ul>
</nav>
<div class="user column column--three-quarters clearfix">
<a class="user__login" href="#">Вход</a>
</div>
</div>
</header>
<main class="container clearfix">
<header class="page-header">
<h1 class="page-header__title">Средства для ухода</h1>
<ul class="breadcrumbs clearfix">
<li class="breadcrumbs__item">
<a href="index.html">Главная</a>
</li>
<li class="breadcrumbs__item">
<a href="shop.html">Магазин</a>
</li>
<li class="breadcrumbs__item">
Средства для ухода
</li>
</ul>
</header>
<section class="filter column column--three-quarters">
<form class="filter__form" action="#" method="POST">
<section class="filter__manufacturers">
<p class="filter__title">Производители:</p>
<label class="filter__condition">
<input type="checkbox" name="Baxter of California" checked>
Baxter of California
</label>
<label class="filter__condition">
<input type="checkbox" name="Mr Natty">
Mr Natty
</label>
<label class="filter__condition">
<input type="checkbox" name="Suavecito" checked>
Suavecito
</label>
<label class="filter__condition">
<input type="checkbox" name="Malin+Goetz">
Malin+Goetz
</label>
<label class="filter__condition">
<input type="checkbox" name="Murray's">
Murray's
</label>
<label class="filter__condition">
<input type="checkbox" name="American crew" checked>
American crew
</label>
</section>
<section class="filter__groups-of-items">
<p class="filter__title">Группы товаров:</p>
<label class="filter__condition">
<input type="radio" name="category">
Бритвенные принадлежности
</label>
<label class="filter__condition">
<input type="radio" name="category" checked>
Средства для ухода
</label>
<label class="filter__condition">
<input type="radio" name="category">
Аксессуары
</label>
</section>
<label class="btn btn--filter">
<input type="submit" value="Показать">
</label>
</form>
</section>
<section class="products column column--nine-quarters clearfix">
<article class="product">
<div class="item__image">
<a class="item__link" href="item.html">
<img src="img/pic__item--set_travel_baxter_of_california.jpg" width="220" height="165" alt="Набор для путешествий «Baxter of California»">
</a>
</div>
<h2 class="item__title">
<a class="item__link" href="item.html">
Набор для путешествий
<span class="item__title item__title--manufacturer">«Baxter of California»</span>
</a>
</h2>
<span class="item__price">2 900 руб.</span>
<a class="btn btn--buy" href="#">Купить</a>
</article>
<article class="product">
<div class="item__image">
<a class="item__link" href="item.html">
<img src="img/pic__item--moisturizing_conditioner_baxter_of_california.jpg" width="220" height="165" alt="Увлажняющий кондиционер «Baxter of California»">
</a>
</div>
<h2 class="item__title">
<a class="item__link" href="item.html">
Увлажняющий кондиционер
<span class="item__title item__title--manufacturer">«Baxter of California»</span>
</a>
</h2>
<span class="item__price">750 руб.</span>
<a class="btn btn--buy" href="#">Купить</a>
</article>
<article class="product">
<div class="item__image">
<a class="item__link" href="item.html">
<img src="img/pic__item--hair_gel_suavecito.jpg" width="220" height="165" alt="Гель для волос «Suavecito»">
</a>
</div>
<h2 class="item__title">
<a class="item__link" href="item.html">
Гель для волос
<span class="item__title item__title--manufacturer">«Suavecito»</span>
</a>
</h2>
<span class="item__price">290 руб.</span>
<a class="btn btn--buy" href="#">Купить</a>
</article>
<article class="product">
<div class="item__image">
<a class="item__link" href="item.html">
<img src="img/pic__item--clay_for_hair_styling_american_crew.jpg" width="220" height="165" alt="Глина для укладки волос «American crew»">
</a>
</div>
<h2 class="item__title">
<a class="item__link" href="item.html">
Глина для укладки волос
<span class="item__title item__title--manufacturer">«American crew»</span>
</a>
</h2>
<span class="item__price">500 руб.</span>
<a class="btn btn--buy" href="#">Купить</a>
</article>
<article class="product">
<div class="item__image">
<a class="item__link" href="item.html">
<img src="img/pic__item--hair_gel_american_crew.jpg" width="220" height="165" alt="Гель для волос «American crew»">
</a>
</div>
<h2 class="item__title">
<a class="item__link" href="item.html">
Гель для волос
<span class="item__title item__title--manufacturer">«American crew»</span>
</a>
</h2>
<span class="item__price">300 руб.</span>
<a class="btn btn--buy" href="#">Купить</a>
</article>
<article class="product">
<div class="item__image">
<a class="item__link" href="item.html">
<img src="img/pic__item--shaving_kit_baxter_of_california.jpg" width="220" height="165" alt="Набор для бритья «Baxter of California»">
</a>
</div>
<h2 class="item__title">
<a class="item__link" href="item.html">
Набор для бритья
<span class="item__title item__title--manufacturer">«Baxter of California»</span>
</a>
</h2>
<span class="item__price">3 900 руб.</span>
<a class="btn btn--buy" href="#">Купить</a>
</article>
<div class="paginator">
<ul class="paginator__list clearfix">
<li class="btn btn--paginator">
<a href="#">1</a>
</li>
<li class="btn btn--paginator btn--active">
2
</li>
<li class="btn btn--paginator">
<a href="#">3</a>
</li>
<li class="btn btn--paginator">
<a href="#">4</a>
</li>
</ul>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container clearfix">
<section class="contacts column column--five-quarters">
<p class="contacts__title">Барбершоп «Бородинский»</p>
<p class="contacts__address">Адрес: г. Санкт-Петербург, Б. Конюшенная, д. 19/8</p>
<p class="contacts__link">
<a href="#">Как нас найти?</a>
</p>
<p class="contacts__phone">Телефон: <a href="tel:+78126660266">+7 (812) 666-02-66</a></p>
</section>
<section class="social column column--two-quarters clearfix">
<p class="social__text">Давайте дружить!</p>
<a class="social__btn social__btn--vk" href="#">Вконтакте</a>
<a class="social__btn social__btn--fb" href="#">Фейсбук</a>
<a class="social__btn social__btn--inst" href="#">Инстаграм</a>
</section>
<section class="copyright column column--five-quarters">
<p class="copyright__text">Разработано:</p>
<a class="btn btn--copyright" href="https://htmlacademy.ru">HTML Academy</a>
</section>
</div>
</footer>
</body>
</html>