-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (62 loc) · 3.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Micro Space Clone</title>
<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=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header class="section-header">
<h1 class="section-header__title" data-target="split-text">Affordability, sustainability, and simplicity- microhouses represent a <span class="u-text-primary" >new way</span> of living that's designed for modern needs.</h1>
<div class="section-header__grid">
<figure class="card">
<img class="card__image" src="./assets/images/house-sm-1.jpg" alt="house" loading="eager" />
</figure>
<div data-target="middle-card-container">
<figure class="card" data-target="middle-card">
<img class="card__image" src="./assets/images/house-lg-4.jpg" alt="house" loading="eager" />
<figcaption class="card__title">Thermal <br>efficiency</figcaption>
</figure>
</div>
<figure class="card">
<img class="card__image" src="./assets/images/house-sm-2.jpg" alt="house" loading="eager" />
</figure>
</div>
</header>
<section class="section-features" data-trigger="fade-up">
<div class="section-features__header" data-target="fade-up">
<div>
<h2 class="section-features__subtitle">SAFETY AND SECURE</h2>
<h3 class="section-features__title">Well-engineered houses with these features</h3>
</div>
<p class="section-features__text">Our well-engineered houses are designed with precision, offering a perfect blend of durability, efficiency and comfort</p>
</div>
<div class="section-features__grid">
<figure class="card">
<img class="card__image" src="./assets/images/house-lg-1.jpg" alt="house" loading="lazy" />
<figcaption class="card__title">Eco <br>friendly</figcaption>
</figure>
<figure class="card">
<img class="card__image" src="./assets/images/house-lg-2.jpg" alt="house" loading="lazy" />
<figcaption class="card__title">Earthquake & <br>cyclone resistant</figcaption>
</figure>
<figure class="card">
<img class="card__image" src="./assets/images/house-lg-3.jpg" alt="house" loading="lazy" />
<figcaption class="card__title">Rapid <br>construction</figcaption>
</figure>
<div data-target="right-card-container">
<!-- <figure class="card">
<img class="card__image" src="./assets/images/house-lg-4.jpg" alt="house" loading="lazy" />
<figcaption class="card__title">Thermal <br>efficiency</figcaption>
</figure> -->
</div>
</div>
</section>
<div class="min-h-screen"></div>
<script type="module" src="./assets/js/script.js" defer></script>
</body>
</html>