-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (39 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>Document</title>
</head>
<body>
<div class="hero">
<nav>
<img src="images/menu.png" class="menu-img">
<img src="images/logo.png" class="logo">
<ul>
<li><a href="">Latest</a></li>
<li><a href="">Modern</a></li>
<li><a href="">Contemporary</a></li>
<li><a href="">Affordable</a></li>
</ul>
<button type="button" onclick="toggleBtn()" id="btn"><span></span></button>
</nav>
<div class="lamp-container">
<img src="images/lamp.png" class="lamp">
<img src="images/light.png" class="light" id="light">
</div>
<div class="text-container">
<h1>Latest <br>in Lighting</h1>
<p>This is the first lamp from our company .We're making a huge collection of modern lamps in all categories from home use to office use</p>
<a href="">Check All Our Collection</a>
<div class="control">
<p>04</p>
<div class="line"><span></span></div>
<p>05</p>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>