-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
43 lines (42 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home Decor - Make your home look good</title>
<!-- CSS Link -->
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="home-images/favicon.png" />
<!-- Font Awesome CDN -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css "
/>
</head>
<body>
<header>
<nav>
<input type="checkbox" id="check" />
<label for="check" id="check-btn">
<i class="fas fa-bars"></i>
</label>
<img src="home-images/Interior-logo.png" alt="logo" />
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Living Room</a></li>
<li><a href="#">Kitchen</a></li>
<li><a href="#">Outdoors</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="head">
<h1>
Coming Home Never <br />
Felt So Good!
</h1>
<p>Quam a diamlorem explicabo quos fugit, ut aliquam modi.</p>
<button>FIND YOUR STYLE</button>
</div>
</header>
</body>
</html>