-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
646 lines (631 loc) · 31.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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>F8 Project 01</title>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="./assets/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="./assets/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="./assets/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="./assets/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="./assets/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="./assets/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="./assets/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="./assets/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="./assets/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="./assets/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="./assets/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon/favicon-16x16.png">
<!-- dùng đường dẫn tuyệt đối cho file này (file này cung cấp thông tin cho trình duyệt và hđh) -->
<!-- đối hđh android có thể in biểu tượng trang web ra ngoài màn hình thì file này sẽ giúp lựa chọn hình ảnh -->
<link rel="manifest" href="./assets/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="./assets/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Reset Css -->
<link rel="stylesheet" href="assets/css/reset.css" />
<!-- Embed fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet"> -->
<link rel="stylesheet" href="assets/fonts/stylesheet.css" />
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap"
rel="stylesheet"
/>
<!-- Styles -->
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<!-- Header -->
<header class="fixed-header">
<div class="content">
<nav class="navbar">
<!-- Logo -->
<!-- nếu để là / thì sẽ tải lại trang mà không phải là trượt -->
<a href="#"
><img src="assets/img/logo.svg" alt="Besnik."
/></a>
<!-- Navigattion -->
<ul>
<!-- có thể để thành dấu # cũng có thể quay về đầu trang -->
<li><a href="#">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#resources">Resources</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<!-- Action -->
<div class="actions">
<a href="#!" class="action-link">Sign in</a>
<!-- class btn là thành phần dùng chung -->
<a href="#!" class="btn action-btn">Sign up</a>
</div>
</nav>
</div>
</header>
<!-- ý nghĩa: chứa toàn bộ bố cục của trang như: header, footer,.... -->
<main id="home">
<!-- Hero -->
<div class="hero-wrap">
<div class="content">
<!-- Hero -->
<div class="hero">
<div class="info">
<p class="sub-title">Welcome to Besnik Agency</p>
<h1 class="title">
Discover a place you'll love to live.
</h1>
<p class="desc">
Get the best real estate deals first, before
they hit the mass market! HOT FORECLOSURE DEALS
with one simple search.
</p>
<!-- cta: Call to action kêu gọi hành động -->
<a href="#!" class="btn hero-cta">More About Us</a>
</div>
<img
src="assets/img/hero-img.svg"
alt="Discover a place
you'll love to live."
class="hero-img"
/>
</div>
</div>
</div>
<!-- Clients -->
<div class="clients">
<div class="content">
<div class="row">
<!-- Logo -->
<img src="assets/img/logo.svg" alt="Besnik." />
<!-- Strars -->
<div class="stars">
<img src="assets/img/Stars.svg" alt="star" />
</div>
</div>
<div class="row row-desc">
<p class="desc" desc>
More than 45,000+ companies trust besnik
</p>
<p class="desc" desc>5 Star Ratings (2k+ Review)</p>
</div>
<div class="images">
<a href="#!">
<img src="assets/img/meUndies.svg" alt="meUnides" />
</a>
<a href="#!">
<img src="assets/img/slack.svg" alt="slack" />
</a>
<a href="#!">
<img src="assets/img/amazon.svg" alt="amazon" />
</a>
<a href="#!">
<img
src="assets/img/woocommerce.svg"
alt="woocommerce"
/>
</a>
<a href="#!">
<img
src="assets/img/sitepoint.svg"
alt="sitepoint"
/>
</a>
</div>
</div>
</div>
<!-- Guides -->
<div id="services" class="guides">
<div class="content">
<h2 class="sub-title">How its works?</h2>
<p class="desc">
Everything you need to know when you're looking to buy,
rent, or sell - all in one place.
</p>
<!-- List guide -->
<ul class="list-guide">
<li class="guide-item">
<img
src="assets/img/buyer.svg"
alt="Buyer"
class="icon"
/>
<h3 class="title">Buyer Guides</h3>
<a href="#!" class="link">
<span>How to buy</span>
<img
src="assets/img/arrow-right.svg"
alt="Arrow right"
class="arrow"
/>
</a>
</li>
<li class="guide-item">
<img
src="assets/img/renter.svg"
alt="Renter"
class="icon"
/>
<h3 class="title">Renter Guides</h3>
<a href="#!" class="link">
<span>How to rent</span>
<img
src="assets/img/arrow-right.svg"
alt="Arrow right"
class="arrow"
/>
</a>
</li>
<li class="guide-item">
<img
src="assets/img/seller.svg"
alt="Seller"
class="icon"
/>
<h3 class="title">Seller Guides</h3>
<a href="#!" class="link">
<span>How to sell</span>
<img
src="assets/img/arrow-right.svg"
alt="Arrow right"
class="arrow"
/>
</a>
</li>
</ul>
<!-- cta: là nút bấm trên các trang quảng cáo, nhằm khuyến khích người dùng mua hàng hya làm gì đó -->
<div class="guide-cta">
<a href="#!" class="btn">Sell Full Guidelines</a>
</div>
</div>
</div>
<div id="features" class="featured">
<div class="content">
<!-- header có thể được dùng cho bất kì phần đầu chứ không nhất thiết phần đầu cùng của trang -->
<header>
<h2 class="sub-title">Featured Properties</h2>
<div class="row">
<p class="desc">
Everything you need to know when you're looking
</p>
<a href="" class="link">
<span>View All Properties</span>
<img
src="assets/img/arrow-right.svg"
alt="Arrow right"
class="arrow"
/>
</a>
</div>
</header>
<div class="list">
<!-- Freatured item 1 -->
<div class="item">
<a href="#!"
><img
src="assets/img/featured-1.jpg"
alt="Nikko Apartments"
class="thumb"
/></a>
<div class="body">
<h3 class="title">
<a href="#!" class="line-clamp"
>Nikko Apartments</a
>
</h3>
<p class="desc line-clamp">
8502 Preston Rd. Inglewood, Maine 98280
</p>
<div class="info">
<!-- không cần thẻ alt vì đây là ảnh mang tính trang trí thoi -->
<img
src="assets/img/Beds.svg"
alt=""
class="icon"
/>
<span class="label">5 Beds</span>
<img
src="assets/img/both.svg"
alt=""
class="icon"
/>
<span class="label">2 Both</span>
<img
src="assets/img/sqft.svg"
alt=""
class="icon"
/>
<span class="label">2000 Sqft</span>
</div>
</div>
</div>
<!-- Freatured item 2 -->
<div class="item">
<a href="#!"
><img
src="assets/img/featured-2.jpg"
alt="CouCou Homestead"
class="thumb"
/></a>
<div class="body">
<h3 class="title">
<a href="!#" class="line-clamp"
>CouCou Homestead</a
>
</h3>
<p class="desc line-clamp">
8502 Preston Rd. Inglewood, Maine 98280
</p>
<div class="info">
<!-- không cần thẻ alt vì đây là ảnh mang tính trang trí thoi -->
<img
src="assets/img/Beds.svg"
alt=""
class="icon"
/>
<span class="label">5 Beds</span>
<img
src="assets/img/both.svg"
alt=""
class="icon"
/>
<span class="label">2 Both</span>
<img
src="assets/img/sqft.svg"
alt=""
class="icon"
/>
<span class="label">2000 Sqft</span>
</div>
</div>
</div>
<!-- Freatured item 3 -->
<div class="item">
<a href="#!"
><img
src="assets/img/featured-3.jpg"
alt="Lavis 18 Residence"
class="thumb"
/></a>
<div class="body">
<h3 class="title">
<a href="#!" class="line-clamp"
>Lavis 18 Residence</a
>
</h3>
<p class="desc line-clamp">
8502 Preston Rd. Inglewood, Maine 98280
</p>
<div class="info">
<!-- không cần thẻ alt vì đây là ảnh mang tính trang trí thoi -->
<img
src="assets/img/Beds.svg"
alt=""
class="icon"
/>
<span class="label">5 Beds</span>
<img
src="assets/img/both.svg"
alt=""
class="icon"
/>
<span class="label">2 Both</span>
<img
src="assets/img/sqft.svg"
alt=""
class="icon"
/>
<span class="label">2000 Sqft</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Stats -->
<div id="resources" class="stats">
<div class="content">
<div class="row">
<div class="img-block">
<!-- do không lường trước được ảnh sẽ lớn như thế nào nên không xuất từ figma ra -->
<img
class="image"
src="assets/img/stats.jpg"
alt="You’ve found a neighborhood you love."
/>
<!-- Trend -->
<div class="stats-trend">
<div class="row">
<strong class="value">40,000+</strong
><img
src="assets/img/arrow-trend-up.svg"
alt=""
class="icon"
/>
</div>
<p class="desc">
By avarage for 2 bedroom apments in San
Francisco, CA
</p>
<div class="separate"></div>
<div class="avatar-block">
<div class="avatar-group">
<img
src="assets/img/avatar-1.jpg"
alt=""
class="avatar"
/>
<img
src="assets/img/avatar-2.jpg"
alt=""
class="avatar"
/>
</div>
<div class="avatar-group">
<img
src="assets/img/avatar-7.jpg"
alt=""
class="avatar"
/>
<img
src="assets/img/avatar-5.jpg"
alt=""
class="avatar"
/>
<img
src="assets/img/avatar-3.jpg"
alt=""
class="avatar"
/>
<div
class="avatar avatar-1"
style="--bg-color: #1f3bb1"
>
N
</div>
</div>
<div class="avatar-group">
<div
class="avatar avatar-1"
style="--bg-color: #24d6d9"
>
FJ
</div>
<img
src="assets/img/avatar-6.jpg"
alt=""
class="avatar"
/>
<div
class="avatar avatar-1"
style="--bg-color: #f8c120"
>
S
</div>
</div>
<div class="avatar-group">
<img
src="assets/img/avatar-1.jpg"
alt=""
class="avatar"
/>
<img
src="assets/img/avatar-5.jpg"
alt=""
class="avatar"
/>
<img
src="assets/img/avatar-3.jpg"
alt=""
class="avatar"
/>
<div
class="avatar avatar-1"
style="--bg-color: #f97f6b"
>
JJ
</div>
</div>
<div class="avatar-group">
<img
src="assets/img/avatar-4.jpg"
alt=""
class="avatar"
/>
<div
class="avatar avatar-1"
style="--bg-color: #73a242"
>
QV
</div>
</div>
<div class="avatar-group">
<img
src="assets/img/avatar-3.jpg"
alt=""
class="avatar"
/>
<img
src="assets/img/avatar-2.jpg"
alt=""
class="avatar"
/>
</div>
<div class="avatar-group">
<img
src="assets/img/avatar-1.jpg"
alt=""
class="avatar"
/>
<div
class="avatar avatar-1"
style="--bg-color: #1f3bb0"
>
IU
</div>
</div>
</div>
</div>
</div>
<div class="info">
<h2 class="sub-title">
You’ve found a neighborhood you love.
</h2>
<p class="desc">
When you own a home, you’re committing to living
in one location for a while. In a recent Trulia
survey, we found that five out of six
respondents said finding the right neighborhood
</p>
</div>
</div>
<div class="row row-qty">
<div class="qty-item">
<strong class="qty">2,500</strong>
<p class="qty-desc">Homes For Sale</p>
</div>
<div class="qty-item">
<strong class="qty">5,000+</strong>
<p class="qty-desc">Homes Recently Sold</p>
</div>
<div class="qty-item">
<strong class="qty">170+</strong>
<p class="qty-desc">Price Reduced</p>
</div>
</div>
</div>
</div>
<!-- Subscription -->
<div id="contact" class="subscription">
<div class="content">
<div class="body">
<div class="info">
<h2 class="sub-title line-clamp">
Subscribe to our Newsletter!
</h2>
<p class="desc line-clamp" style="--line-clamp: 3">
Subscribe to our newsletter and stay updated.
</p>
<div class="btn">Subscribe</div>
</div>
<img
src="assets/img/newletter.svg"
alt="Subscribe to our Newsletter!"
class="image"
/>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<div class="content">
<div class="row row-top">
<!-- Product column -->
<div class="column">
<!-- vì xét góc độ làm SEO thì nó sẽ đánh giá nội dung theo cấp bậc thẻ h
nên để nhấn mạnh nội dung h2 thì để thẻ này là h3 -->
<h3 class="heading">Product</h3>
<ul class="list">
<li class="item">
<a href="">Listing</a>
</li>
<li class="item">
<a href="">Property</a>
</li>
<li class="item">
<a href="">Agents</a>
</li>
<li class="item">
<a href="">Blog</a>
</li>
</ul>
</div>
<!-- Resources column -->
<div class="column">
<h3 class="heading">Resources</h3>
<ul class="list">
<li class="item">
<a href="">Our Homes</a>
</li>
<li class="item">
<a href="">Member Stories</a>
</li>
<li class="item">
<a href="">Video</a>
</li>
<li class="item">
<a href="">Free trial</a>
</li>
</ul>
</div>
<!-- Company column -->
<div class="column">
<h3 class="heading">Company</h3>
<ul class="list">
<li class="item">
<a href="">Patnerships</a>
</li>
<li class="item">
<a href="">Terms of use</a>
</li>
<li class="item">
<a href="">Privacy</a>
</li>
<li class="item">
<a href="">Sitemap</a>
</li>
</ul>
</div>
<!-- Get in touch column -->
<div class="column">
<h3 class="heading">Get in touch</h3>
<p class="desc">
You’ll find your next home, in any style you prefer.
</p>
<div class="social">
<a href="" class="social-link">
<img src="assets/img/facebook.svg" alt="" />
</a>
<a href="" class="social-link">
<img src="assets/img/twitter.svg" alt="" />
</a>
<a href="" class="social-link">
<img src="assets/img/linkedin.svg" alt="" />
</a>
</div>
</div>
</div>
<div class="row row-bottom">
<img src="assets/img/logo.svg" alt="Besnik." class="logo" />
<p class="copyright">
Copyright 2020.com, All rights reserved.
</p>
</div>
</div>
</footer>
</body>
</html>