-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (76 loc) · 2.34 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>Document</title>
<link rel="stylesheet" href="./css/style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<div class="container">
<section aria-label="navbar">
<nav class="navbar">
<div>
<img src="./images/white-logo.png" alt="logo" class="logo" />
</div>
<div class="grow-list">
<ul class="list">
<div class="line"></div>
<li class="list-item">About Us</li>
<li class="list-item">Benfits</li>
<li class="list-item">Projects</li>
<li class="list-item">Stages</li>
<li class="list-item">Services</li>
<li class="list-item">Call us<br />+38(007)054 64 34</li>
</ul>
</div>
</nav>
</section>
<!-- Hero-section -->
<section class="hero">
<div class="left">
<h1>
Interior Design That <br />
Care About Details
</h1>
<button>Learn More</button>
</div>
<div class="right">
<div class="square">
<div class="icon">
<i class="fa-solid fa-puzzle-piece"></i>
</div>
<p>
We create your space better <br />
based on your own idea
</p>
<div class="circle-line">
<span class="circle"></span>
</div>
</div>
<div class="square">
<div class="icon">
<i class="fa-solid fa-lightbulb"></i>
</div>
<p>
Inovation ideas, stylish <br />
design <br />
for home & business
</p>
<div class="circle-line">
<span class="circle"></span>
</div>
</div>
</div>
</section>
</div>
</body>
</html>