-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatalog.html
173 lines (173 loc) · 8.41 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
<!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 class="active-page" href="#">Каталог</a>
</li>
<li>
<a href="about-us.html">О нас</a>
</li>
<li>
<a href="contacts.html">Контакты</a>
</li>
</ul>
</nav>
<div class="user-block right-col">
<a class="login" href="registration.html">Вход</a>
</div>
</div>
</div>
</header>
<main class="catalog container clearfix">
<h1>Каталог</h1>
<div class="catalog-selector left-col">
<form action="/echo/html" method="post">
<fieldset>
<legend>Бренд</legend>
<label>
<input type="checkbox" value="Giant">
<span class="marker-indicator"></span>
Giant
</label>
<label>
<input type="checkbox" value="Nukeproof">
<span class="marker-indicator"></span>
Nukeproof
</label>
<label>
<input type="checkbox" value="Vitus Bikes">
<span class="marker-indicator"></span>
Vitus Bikes
</label>
</fieldset>
<fieldset>
<legend>Год выпуска</legend>
<label>
<input type="checkbox" value="2014">
<span class="marker-indicator"></span>
2014
</label>
<label>
<input type="checkbox" value="2015">
<span class="marker-indicator"></span>
2015
</label>
<label>
<input type="checkbox" value="2016">
<span class="marker-indicator"></span>
2016
</label>
</fieldset>
<fieldset>
<legend>Размер колес</legend>
<label>
<input type="checkbox" value="26">
<span class="marker-indicator"></span>
26
</label>
<label>
<input type="checkbox" value="27.5">
<span class="marker-indicator"></span>
27.5 (650b)
</label>
<label>
<input type="checkbox" value="29">
<span class="marker-indicator"></span>
29
</label>
</fieldset>
<fieldset>
<legend>Материал рамы</legend>
<label>
<input type="checkbox" value="Аллюминий">
<span class="marker-indicator"></span>
Аллюминий
</label>
<label>
<input type="checkbox" value="Карбон">
<span class="marker-indicator"></span>
Карбон
</label>
</fieldset>
<button class="btn" type="button">Показать</button>
</form>
</div>
<div class="catalog-list right-col">
<a class="catalog-item" href="products/giant-reign-1.html">
<img src="img/reign-275-1.jpg" alt="Giant Reign 1 (2016)" title="Giant Reign 1 (2016)" width="100%" height="auto">
<h3>Giant Reign 1 (2016)</h3>
</a>
<a class="catalog-item" href="products/nukeproof-mega-team.html">
<img src="img/mega-275-team.jpg" alt="Nukeproof Mega Team (2016)" title="Nukeproof Mega Team (2016)" width="100%" height="auto">
<h3>Nukeproof Mega Team (2016)</h3>
</a>
<a class="catalog-item" href="products/vitus-sommet-crx.html">
<img src="img/vitus-bikes-sommet-crx-2016.jpg" alt="Vitus Bikes Sommet CRX (2016)" width="100%" height="auto">
<h3>Vitus Bikes Sommet CRX (2016)</h3>
</a>
</div>
</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>