-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.html
397 lines (389 loc) · 14.3 KB
/
list.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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<title>Home sweet home</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Castoro&family=Noto+Sans&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/stylesheets/css/style.css" />
</head>
<body class="bg-white container-fluid no">
<main>
<nav class="text-white row bg-magenta" id="navbar">
<div class="col-12 col-lg-6 py-4 mt-lg-0 text-center text-lg-left">
<a href="index.html" class="text-decoration-none logo-text">
<i class="fas fa-home"></i>Home sweet home
</a>
</div>
<div class="col-12 col-lg-6 mb-4 mb-lg-0 my-lg-auto">
<ul
class="justify-content-center justify-content-lg-around m-0 p-0 row"
>
<li class="col-auto px-1 text-center my-auto">
<a
href="list.html"
class="d-flex justify-content-center text-decoration-none align-items-center"
><i class="fas fa-search mr-2"></i
><span class="d-none d-lg-block text-uppercase nav-span"
>Houses</span
></a
>
</li>
<li class="col-auto px-1 text-center my-auto">
<a
href="#"
class="d-flex justify-content-center text-decoration-none align-items-center"
><i class="fas fa-user mr-2"></i
><span class="d-none d-lg-block text-uppercase nav-span"
>About</span
></a
>
</li>
<li class="col-auto px-1 text-center my-auto">
<a
href="#"
class="d-flex justify-content-center text-decoration-none align-items-center"
><i class="fas fa-wifi mr-2"></i
><span class="d-none d-lg-block text-uppercase nav-span"
>Blog</span
></a
>
</li>
<li class="col-auto px-1 text-center my-auto">
<a
href="#"
class="d-flex justify-content-center text-decoration-none align-items-center"
><i class="fas fa-bars mr-2"></i
><span class="d-none d-lg-block text-uppercase nav-span"
>More...</span
></a
>
</li>
</ul>
</div>
</nav>
</main>
<div class="row sec-1-list no mt-5 py-5">
<div class="col-12">
<div class="row">
<div class="col-12 font-weight-bold text-gray-light">
<h1 class="text-center filter-by font-weight-bold">Filter by:</h1>
</div>
</div>
<div class="row justify-content-center">
<form action="#">
<div class="row">
<div class="col-12 col-md-auto form-group pr-0 pl-1">
<label class="text-gray-dark font-weight-bold text-uppercase"
>Colony:*</label
>
<input type="text" class="form-control" placeholder="" />
</div>
<div class="col-12 col-md-auto form-group pr-0 pl-1">
<label class="text-gray-dark font-weight-bold text-uppercase"
>State</label
>
<select class="form-control">
<option value="0">Select an option...</option>
<option>Yucatán</option>
<option>Quintana Roo</option>
<option>Veracruz</option>
<option>Guadalajara</option>
<option>Monterrey</option>
</select>
</div>
<div class="col-12 col-md-auto form-group pr-0 pl-1">
<label class="text-gray-dark font-weight-bold text-uppercase"
>City</label
>
<select class="form-control">
<option value="0">Select an option...</option>
<option>Cancun</option>
<option>Jaliso</option>
</select>
</div>
<div class="col-12 col-md-auto form-group pr-0 pl-1">
<label class="text-gray-dark font-weight-bold text-uppercase"
>Type</label
>
<select class="form-control">
<option value="0">Select an option...</option>
<option>One roof</option>
<option>Two roofs</option>
</select>
</div>
<div class="col-12 col-md-auto form-group pr-0 pl-1">
<label class="text-gray-dark font-weight-bold text-uppercase"
>Rooms</label
>
<select class="form-control">
<option value="0">Select an option...</option>
<option>One</option>
<option>Two</option>
</select>
</div>
<div class="col-12 col-md-auto form-group pr-0 pl-1">
<label class="text-gray-dark font-weight-bold text-uppercase"
>Garage</label
>
<select class="form-control">
<option value="0">Select an option...</option>
<option>One</option>
<option>Two</option>
</select>
</div>
<div class="col-12 col-md-auto form-group mt-auto pr-0 pl-1">
<button type="submit" class="btn btn-primary">Search</button>
</div>
<div class="col-12 col-md-auto form-group mt-auto pl-1">
<button type="submit" class="btn btn-warning text-white">
<i class="fas fa-edit"></i> Clear filter
</button>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="sec-2-list my-5 py-5 mx-lg-5 px-lg-5">
<div class="row">
<div class="col-12 mb-5">
<p class="search-title text-center">
Search results found 7 schools(s).
</p>
</div>
</div>
<div class="row">
<div
class="col-12 col-md-6 col-lg-4 house-option text-center mt-5 px-3"
>
<a href="house.html">
<img
src="assets/img/house.jpg"
class="house-found-img"
alt="house"
/>
<p
class="house-found-p position-absolute text-white font-weight-bold"
>
Name: <span class="font-weight-bold">Demothree</span>
</p>
</a>
</div>
<div
class="col-12 col-md-6 col-lg-4 house-option text-center mt-5 px-3"
>
<a href="house.html">
<img
src="assets/img/house.jpg"
class="house-found-img"
alt="house"
/>
<p
class="house-found-p position-absolute text-white font-weight-bold"
>
Name: <span class="font-weight-bold">Demothree</span>
</p>
</a>
</div>
<div
class="col-12 col-md-6 col-lg-4 house-option text-center mt-5 px-3"
>
<a href="house.html">
<img
src="assets/img/house.jpg"
class="house-found-img"
alt="house"
/>
<p
class="house-found-p position-absolute text-white font-weight-bold"
>
Name: <span class="font-weight-bold">Demothree</span>
</p>
</a>
</div>
<div
class="col-12 col-md-6 col-lg-4 house-option text-center mt-5 px-3"
>
<a href="house.html">
<img
src="assets/img/house.jpg"
class="house-found-img"
alt="house"
/>
<p
class="house-found-p position-absolute text-white font-weight-bold"
>
Name: <span class="font-weight-bold">Demothree</span>
</p>
</a>
</div>
</div>
</div>
<footer>
<div class="row bg-black justify-content-center">
<div class="col-12 text-center py-4">
<a href="index.html" class="text-decoration-none text-white"
><i class="fas fa-home"></i>Home sweet home</a
>
</div>
<div class="col-12 col-sm-6 col-md-auto text-center py-3">
<a href="index.html" class="text-decoration-none text-white">Home</a>
</div>
<div class="col-12 col-sm-6 col-md-auto text-center py-3">
<a href="#" class="text-decoration-none text-white"
><i class="fas fa-user"></i> About</a
>
</div>
<div class="col-12 col-sm-6 col-md-auto text-center py-3">
<a href="list.html" class="text-decoration-none text-white"
><i class="fas fa-search"></i> Search</a
>
</div>
<div class="col-12 col-sm-6 col-md-auto text-center py-3">
<a href="#" class="text-decoration-none text-white"
><i class="fab fa-facebook-f"></i> Facebook</a
>
</div>
<div class="col-12 col-sm-6 col-md-auto text-center py-3">
<a href="#" class="text-decoration-none text-white"
><i class="fab fa-twitter"></i> Twitter</a
>
</div>
<div class="col-12 col-sm-6 col-md-auto text-center py-3">
<a href="#" class="text-decoration-none text-white"
><i class="fab fa-instagram"></i> Instagram</a
>
</div>
<div class="col-12 col-sm-6 col-md-auto text-center py-3">
<a href="#" class="text-decoration-none text-white"
><i class="fab fa-google-plus-g"></i> Google+</a
>
</div>
<div class="col-12 col-sm-6 col-md-auto text-center py-3">
<a href="#" class="text-decoration-none text-white"
><i class="fab fa-snapchat-ghost"></i> Snapchat</a
>
</div>
</div>
<div class="row bg-black pb-3">
<div class="col-5 d-none d-lg-block px-0">
<div class="row">
<div class="col-12 mt-3">
<h3 class="text-white text-uppercase mb-3 text-center">
Subscribe
</h3>
</div>
</div>
<form class="row justify-content-center" action="#">
<div class="col-auto pr-0 d-flex align-items-center">
<input
class="form input-lg bg-black border text-white"
type="text"
/>
</div>
<div class="col-4 pl-0">
<button type="submit" class="btn btn-sm text-white btn-footer">
Send
</button>
</div>
</form>
</div>
<div class="col-2 d-none d-lg-block">
<div class="row">
<div class="col-12">
<h3
class="text-white text-uppercase my-3 text-center text-align-end"
>
Contact
</h3>
</div>
</div>
<div class="row">
<div class="col-12">
<p class="text-gray-light text-f2">
Lorem ipsum dolor
<a href="#" class="text-decoration-none text-magenta">sit</a>
</p>
</div>
</div>
</div>
<div class="col-5 d-none d-lg-block">
<div class="row">
<div class="col-12">
<h3
class="text-white text-uppercase my-3 text-center text-align-end"
>
About
</h3>
</div>
</div>
<div class="row">
<div class="col-12">
<p class="text-gray-light text-f2">
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam,
<a href="#" class="text-decoration-none text-magenta"
>quis nostrud".</a
>
</p>
</div>
</div>
</div>
</div>
<div class="row bg-gray-dark text-gray-light pb-lg-2">
<div class="col-4 d-none d-lg-block mb-1">
<a class="text-decoration-none text-gray-light" href="#"
><i class="fab fa-facebook-f fa-lg pr-2 pt-3"></i
></a>
<a class="text-decoration-none text-gray-light" href="#"
><i class="fab fa-twitter fa-lg pr-2 pt-3"></i
></a>
<a class="text-decoration-none text-gray-light" href="#"
><i class="fab fa-instagram fa-lg pr-2 pt-3"></i
></a>
<a class="text-decoration-none text-gray-light" href="#"
><i class="fab fa-google-plus-g fa-lg pr-2 pt-3"></i
></a>
<a class="text-decoration-none text-gray-light" href="#"
><i class="fab fa-snapchat-ghost fa-lg pr-2 pt-3"></i
></a>
</div>
<div class="col-8 d-none d-lg-block my-auto">
<p class="mb-0 text-right">
Lorem ipsum dolor sit by
<a href="index.html" class="text-decoration-none text-gray-light">
<i class="fas fa-home"></i>Home sweet home</a
>. Thanks for all.
</p>
</div>
</div>
</footer>
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"
></script>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>