-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
425 lines (418 loc) · 15.1 KB
/
index.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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
<!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>
<section class="row sec-1-index py-5">
<div class="col-12 px-0">
<h1
class="text-center text-white font-weight-bold text-uppercase font-size-mid title-form mb-3"
>
The best place to find your sweet home
</h1>
</div>
<div class="col-12 px-2 col-main-form">
<form action="list.html" class="row rounded mx-0 p-2 border main-form">
<div class="col-12 px-2">
<label
class="text-dark font-weight-bold text-uppercase font-size-mid"
>Search by key word:</label
>
</div>
<div class="col-12 col-md-8 px-2 pr-md-0">
<input type="text" class="form-control form-control-sm" />
</div>
<div class="col-12 col-md-4 px-2 mt-2 mt-md-0 pl-md-0">
<button
type="submit"
class="btn bg-magenta text-white btn-block btn-sm"
>
Search
</button>
</div>
</form>
</div>
<div class="col-12">
<button type="button" class="btn"></button>
</div>
</section>
<section class="row sec-2 justify-content-center text-center py-4">
<div class="col-12 mb-2">
<h2 class="font-weight-bold h2-steps">
Home sweet home works in four simple steps
</h2>
</div>
<div class="col-12 col-md-6 my-2 my-md-5">
<div class="row mb-2">
<div class="col-12">
<i class="fas fa-search fa-2x"></i>
</div>
</div>
<div class="row mb-2">
<div class="col-12">
<h3 class="font-weight-bold">1- Search:</h3>
</div>
</div>
<div class="row">
<div class="col-12 p-square">
<p class="font-size-mid">
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud".
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 my-2 my-md-5">
<div class="row mb-2">
<div class="col-12">
<i class="fas fa-map-marked-alt fa-2x"></i>
</div>
</div>
<div class="row mb-2">
<div class="col-12">
<h3 class="font-weight-bold">2- Locate:</h3>
</div>
</div>
<div class="row">
<div class="col-12 p-square">
<p class="font-size-mid">
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud".
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 my-2 my-md-5">
<div class="row mb-2">
<div class="col-12">
<i class="far fa-file-alt fa-3x"></i>
</div>
</div>
<div class="row mb-2">
<div class="col-12">
<h3 class="font-weight-bold">3- Apply:</h3>
</div>
</div>
<div class="row">
<div class="col-12 p-square">
<p class="font-size-mid">
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud".
</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 my-2 my-md-5">
<div class="row mb-2">
<div class="col-12">
<i class="fas fa-umbrella-beach fa-2x"></i>
</div>
</div>
<div class="row mb-2">
<div class="col-12">
<h3 class="font-weight-bold">4- Enjoy:</h3>
</div>
</div>
<div class="row">
<div class="col-12 p-square">
<p class="font-size-mid">
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud".
</p>
</div>
</div>
</div>
</section>
<section class="sec-3">
<div class="row color bg-magenta text-white">
<div
class="col-12 col-md-7 color-column1 pt-3 px-md-5 d-flex flex-column justify-content-center align-items-center"
>
<h3 class="h3-color font-weight-bold">Nice title</h3>
<p class="p-color font-weight-bold text-center text-md-left">
Lorem ipsum dolor sit amet consectetur adipisicing elit..."
</p>
<a href="list.html" class="btn text-magenta bg-white w-50"
>Find a house</a
>
</div>
<div class="col-12 col-md-5 px-md-5 py-4 text-center">
<img
class="color-img rounded-circle"
src="assets/img/house.jpg"
alt="house"
/>
</div>
</div>
<div class="row color bg-gray-light2 text-white">
<div
class="col-12 col-md-7 color-column1 pt-3 px-md-5 d-flex flex-column justify-content-center align-items-center"
>
<h3 class="h3-color font-weight-bold">Nice title</h3>
<p class="p-color font-weight-bold text-center text-md-left">
Lorem ipsum dolor sit amet consectetur adipisicing elit..."
</p>
<a href="list.html" class="btn text-gray-light bg-white w-50"
>Find a house</a
>
</div>
<div class="col-12 col-md-5 px-md-5 py-4 text-center">
<img
class="color-img rounded-circle"
src="assets/img/house.jpg"
alt="house"
/>
</div>
</div>
<div class="row color bg-blue text-white">
<div
class="col-12 col-md-7 color-column1 pt-3 px-md-5 d-flex flex-column justify-content-center align-items-center"
>
<h3 class="h3-color font-weight-bold">Nice title</h3>
<p class="p-color font-weight-bold text-center text-md-left">
Lorem ipsum dolor sit amet consectetur adipisicing elit..."
</p>
<a href="list.html" class="btn text-blue bg-white w-50"
>Find a house</a
>
</div>
<div class="col-12 col-md-5 px-md-5 py-4 text-center">
<img
class="color-img rounded-circle"
src="assets/img/house.jpg"
alt="house"
/>
</div>
</div>
</section>
<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>