-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatalog.html
209 lines (204 loc) · 11.3 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>HTML Academy: Седона - Гостиницы</title>
<link rel="stylesheet" href="css/normalize-min.css">
<link rel="stylesheet" href="css/style-min.css">
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="nav-logo">
<a class="logo-link" href="index.html">
<img class="logo" src="img/logo.svg" width="140" height="72" alt="Логотип Седоны">
</a>
</div>
<nav class="nav" aria-label="Навигация по сайту Седона">
<div class="nav-item">
<a class="nav-link" href="#">Информация</a>
</div>
<div class="nav-item">
<a class="nav-link" href="#">Фото и видео</a>
</div>
<div class="nav-item">
<a class="nav-link" href="#">Карта штата</a>
</div>
<div class="nav-item">
<a class="nav-link current-state">Гостиницы</a>
</div>
</nav>
</header>
<main class="container">
<h1 class="visually-hidden">Гостиницы</h1>
<section class="filtres">
<h2 class="visually-hidden">Фильтр гостиниц</h2>
<form class="filtres-form">
<div class="filtres-item">
<div class="filtres-title">Инфраструктура:</div>
<div class="filtres-item-checkbox">
<input class="filtres-input visually-hidden" type="checkbox" name="infrastructure" id="swimming" value="1" checked>
<label class="checkbox-label" for="swimming">Бассейн</label>
</div>
<div class="filtres-item-checkbox">
<input class="filtres-input visually-hidden" type="checkbox" name="infrastructure" id="parking" value="2">
<label class="checkbox-label" for="parking">Парковка</label>
</div>
<div class="filtres-item-checkbox">
<input class="filtres-input visually-hidden" type="checkbox" name="infrastructure" id="wifi" value="3">
<label class="checkbox-label" for="wifi">Wi-Fi</label>
</div>
</div>
<div class="filtres-item">
<div class="filtres-title">Тип жилья:</div>
<div class="filtres-item-checkbox">
<input class="filtres-input visually-hidden" type="checkbox" name="housing" id="hotel" value="1" checked>
<label class="checkbox-label" for="hotel">Гостиница</label>
</div>
<div class="filtres-item-checkbox">
<input class="filtres-input visually-hidden" type="checkbox" name="housing" id="motel" value="2" checked>
<label class="checkbox-label" for="motel">Мотель</label>
</div>
<div class="filtres-item-checkbox">
<input class="filtres-input visually-hidden" type="checkbox" name="housing" id="apartments" value="3" checked>
<label class="checkbox-label" for="apartments">Апартаменты</label>
</div>
</div>
<div class="filtres-price">
<div class="filtres-title ">Стоимость в сутки (Р):</div>
<div class="filtres-price-range">
<div class="filtres-price-min">
<label class="range-label" for="amount-min"></label>
<input class="range-min" type="text" name="range-min" id="amount-min" value="От 0" readonly>
</div>
<div class="filtres-price-sep"></div>
<div class="filtres-price-max">
<label class="range-label" for="amount-max"></label>
<input class="range-max" type="text" name="range-max" id="amount-max" value="До 3000" readonly>
</div>
</div>
<div class="filtres-price-slider">
<div class="slider-range" id="slider-range">
<div class="slider-range-inside"></div>
<span class="slider-range-min"></span>
<span class="slider-range-max"></span>
</div>
</div>
<div class="filtres-submit">
<button class="filtres-submit-btn" type="submit">Показать</button>
</div>
</div>
</form>
</section>
<section class="hotels-found">
<h2 class="visually-hidden">Найденные гостиницы</h2>
<div class="sorting">
<div class="sorting-wrap">
<div class="sorting-found">Найдено: 3</div>
<div class="sorting-text">Сортировка:</div>
<a class="sorting-select current-sorting" href="#">По цене</a>
<a class="sorting-select" href="#">По типу</a>
<a class="sorting-select" href="#">По рейтингу</a>
<div class="sorting-switch">
<a class="sorting-switch-btn" href="#" aria-label="Показать список выше">
<svg class="sorting-svg" xmlns="http://www.w3.org/2000/svg" width="11" height="10" viewBox="0 0 11 10">
<path fill="#CBCBCB" d="M5.5 0L0 10h11z"/>
</svg>
</a>
<a class="sorting-switch-btn" href="#" aria-label="Показать список ниже">
<svg class="sorting-svg" xmlns="http://www.w3.org/2000/svg" width="11" height="10" viewBox="0 0 11 10">
<path fill="#CBCBCB" d="M5.5 10L0 0h11"/>
</svg>
</a>
</div>
</div>
</div>
<div class="hotels-wrap">
<div class="hotel-item">
<div class="hotel-img">
<img src="img/hotel-picture-1.jpg" width="135" height="90" alt="Amara Resort & Spa">
</div>
<div class="hotel-info">
<a class="hotel-title" href="#">Amara Resort & Spa</a>
<div class="hotel-type">Гостиница</div>
<div class="hotel-price">От 4000 Р.</div>
<a class="hotel-link" href="#" aria-label="Amara Resort & Spa">
Подробнее
</a>
<button class="hotel-booking" type="button">Забронировать</button>
</div>
<div class="hotel-rating">
<div class="hotel-rating-text">Рейтинг: 8,5</div>
</div>
</div>
<div class="hotel-item">
<div class="hotel-img">
<img src="img/hotel-picture-2.jpg" width="135" height="90" alt="Desert Quail Inn">
</div>
<div class="hotel-info">
<a class="hotel-title" href="#">Desert Quail Inn</a>
<div class="hotel-type">Мотель</div>
<div class="hotel-price">От 3000 Р.</div>
<a class="hotel-link" href="#" aria-label="Desert Quail Inn">
Подробнее
</a>
<button class="hotel-booking" type="button">Забронировать</button>
</div>
<div class="hotel-rating">
<div class="hotel-rating-text">Рейтинг: 8,9</div>
</div>
</div>
<div class="hotel-item">
<div class="hotel-img">
<img src="img/hotel-picture-3.jpg" width="135" height="90" alt="Villas at Poco Diablo">
</div>
<div class="hotel-info">
<a class="hotel-title" href="#">Villas at Poco Diablo</a>
<div class="hotel-type">Апартаменты</div>
<div class="hotel-price">От 2000 Р.</div>
<a class="hotel-link" href="#" aria-label="Villas at Poco Diablo">
Подробнее
</a>
<button class="hotel-booking" type="button">Забронировать</button>
</div>
<div class="hotel-rating">
<div class="hotel-rating-text">Рейтинг: 9,2</div>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer-wrap">
<div class="footer-back"></div>
<div class="footer-contacts">
<p class="footer-text">
#visitSEDONA</p>
<p class="footer-text">
тел: <a class="footer-tel" href="tel:+74956660266">+7(495) 666-02-66</a></p>
</div>
<div class="footer-social">
<a class="footer-social-link twitter" href="#">
<p class="visually-hidden">Twitter</p>
</a>
<a class="footer-social-link facebook" href="#">
<p class="visually-hidden">Facebook</p>
</a>
<a class="footer-social-link youtube" href="#">
<p class="visually-hidden">Youtube</p>
</a>
</div>
<div class="footer-copyright">
<div class="footer-copyright-text">Website by</div>
<a class="footer-copyright-link" href="https://htmlacademy.ru/intensive/htmlcss">
<p class="visually-hidden">HTML Academy</p>
<svg class="footer-copyright-svg" xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" width="115" height="41" viewBox="0 0 113 39">
<path fill="#000000" d="M46.84 28.22a2.07 2.07 0 0 0 .58-.11v1.4a3.41 3.41 0 0 1-1.24.22 1.75 1.75 0 0 1-1.75-1 5.08 5.08 0 0 1-3.3 1.13c-1.59 0-3.06-.87-3.06-2.68 0-2.24 2.08-2.93 3.9-2.93a11.63 11.63 0 0 1 2.28.26v-.31c0-1.09-.8-1.86-2.3-1.86a7.79 7.79 0 0 0-3.15.67v-1.79a10.72 10.72 0 0 1 3.35-.58c2.48 0 4 1.18 4 3.83v3.14a.57.57 0 0 0 .69.61zm-6.76-1.19a1.42 1.42 0 0 0 1.64 1.29 3.56 3.56 0 0 0 2.53-1v-1.51a10.21 10.21 0 0 0-1.9-.22c-1.1.01-2.27.35-2.27 1.45zM53.06 20.62a5.29 5.29 0 0 1 2.7.67v1.79a4.28 4.28 0 0 0-2.42-.73 2.89 2.89 0 1 0 0 5.76 5.26 5.26 0 0 0 2.55-.67v1.8a6.58 6.58 0 0 1-2.9.6 4.42 4.42 0 0 1-4.72-4.54 4.54 4.54 0 0 1 4.79-4.68zM65.84 28.22a2.07 2.07 0 0 0 .58-.11v1.4a3.41 3.41 0 0 1-1.24.22 1.75 1.75 0 0 1-1.75-1 5.08 5.08 0 0 1-3.3 1.13c-1.59 0-3.06-.87-3.06-2.68 0-2.24 2.08-2.93 3.9-2.93a11.63 11.63 0 0 1 2.28.26v-.31c0-1.09-.8-1.86-2.3-1.86a7.79 7.79 0 0 0-3.15.67v-1.79a10.72 10.72 0 0 1 3.35-.58c2.48 0 4 1.18 4 3.83v3.14a.57.57 0 0 0 .69.61zm-6.76-1.19a1.42 1.42 0 0 0 1.64 1.29 3.56 3.56 0 0 0 2.53-1v-1.51a10.21 10.21 0 0 0-1.9-.22c-1.11.01-2.27.35-2.27 1.45zM76.67 16.85v12.76h-1.76v-1.39a4.07 4.07 0 0 1-3.35 1.62 4.62 4.62 0 0 1 0-9.22 4 4 0 0 1 3.15 1.37v-5.14h2zm-4.76 5.48a2.9 2.9 0 0 0 0 5.8 3 3 0 0 0 2.79-1.84v-2.13a3.06 3.06 0 0 0-2.79-1.83zM82.99 20.62c3.48 0 4.68 2.81 4.12 5.34h-6.58c.22 1.57 1.75 2.22 3.35 2.22a6.41 6.41 0 0 0 2.77-.62v1.68a7.5 7.5 0 0 1-3.14.6c-2.68 0-5-1.53-5-4.61a4.39 4.39 0 0 1 4.48-4.61zm.09 1.62a2.39 2.39 0 0 0-2.57 2.26h4.85a2.06 2.06 0 0 0-2.28-2.26zM89.1 29.61v-8.75h1.73v1.09a4 4 0 0 1 2.92-1.33 3 3 0 0 1 2.73 1.4 4.33 4.33 0 0 1 3.06-1.4 3.21 3.21 0 0 1 3.32 3.52v5.47h-2V24.2a1.67 1.67 0 0 0-1.73-1.84 2.94 2.94 0 0 0-2.17 1.18V29.61h-2V24.2a1.67 1.67 0 0 0-1.73-1.84 3.11 3.11 0 0 0-2.32 1.35v5.91h-2zM111.47 20.86h2l-4.1 9.93c-.95 2.28-2.19 3-3.52 3a5 5 0 0 1-1.15-.15v-1.66a3 3 0 0 0 .89.13c.95 0 1.66-.67 2.17-2l.18-.44-4.16-8.82h2.13l3 6.6zM40.66 1.53v5a4 4 0 0 1 2.83-1.2A3.41 3.41 0 0 1 47.1 8.9v5.41h-2V9.15a1.9 1.9 0 0 0-2-2.1 3.08 3.08 0 0 0-2.44 1.46v5.8h-2V1.53h2zM52.43 2.42v3.12h3.17v1.71h-3.17v4c0 1.15.53 1.53 1.66 1.53a4.71 4.71 0 0 0 1.77-.35v1.68a7.14 7.14 0 0 1-2.35.38 2.68 2.68 0 0 1-3-2.88V7.23h-1.6V5.52h1.57V2.88zM58.1 14.29V5.54h1.73v1.09a4 4 0 0 1 2.92-1.33 3 3 0 0 1 2.73 1.4 4.33 4.33 0 0 1 3.06-1.4 3.21 3.21 0 0 1 3.32 3.52v5.47h-2V8.88a1.67 1.67 0 0 0-1.73-1.84 2.94 2.94 0 0 0-2.17 1.18V14.29h-2V8.88a1.67 1.67 0 0 0-1.73-1.84 3.11 3.11 0 0 0-2.32 1.35v5.91h-2zM74.72 1.52h1.95v12.76h-1.95zM15.44.02h-.16L0 1.62v28l15.28 9.09 15.28-9.09v-28zm13.12 28.45l-13.28 7.9L2 28.47V16.99l13.22 7.87v1.43l-9.07-5.4v1.38l9.11 5.47v1.46l-9.1-5.42v1.38l9.11 5.47 9.19-5.5V19.22l4.1-2.45v11.67zm0-13.16l-3.65 2.14-1.68 1-8-4.76v1.38l6.84 4.07h-.06l-.15.09-1 .57-5.64-3.36v1.38l4.45 2.65-1.05.7-3.36-2v1.38l2.21 1.3-2.25 1.35-13.16-7.82 13.17-7.92zm0-1.39L15.21 6.05l-13.2 7.86V3.41l13.28-1.39 13.28 1.39v10.51z"/>
</svg>
</a>
</div>
</div>
</footer>
</div>
</body>
</html>