-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (77 loc) · 3.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Interior Design Landing Page</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main class="container">
<header>
<div class="logo">
<h2>LOGO<br />HERE</h2>
</div>
<nav>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Benefits</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Stages</a></li>
<li><a href="#">Services</a></li>
</ul>
<div class="call-us">
<div class="phone-icon">
<img src="./assets/phone-call.png" alt="phone" />
</div>
<div class="call-us__number">
<h2>
call-us <br />
+38(0976545434)
</h2>
</div>
</div>
</nav>
</header>
<section class="hero">
<div class="hero__left">
<div class="hero__heading">
<h1>Interior Design That Care About Details.</h1>
</div>
<div class="hero__button">
<button type="button">LEARN MORE</button>
</div>
</div>
<div class="hero__right">
<div class="card card-1">
<span class="icon">
<img src="./assets/extension.png" alt="extension" />
</span>
<div class="detail">
<h4>
We create your space better based on your own
idea
</h4>
</div>
<span class="line"></span>
<span class="circle"></span>
</div>
<div class="card card-2">
<span class="icon">
<img src="./assets/lightbulb.png" alt="lightbulb" />
</span>
<div class="detail">
<h4>
We create your space better based on your own
idea
</h4>
</div>
<span class="line-1"></span>
<span class="circle-1"></span>
</div>
</div>
</section>
</main>
</body>
</html>