-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="lamp.css" />
<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>Vue Lamp</title>
</head>
<body>
<div class="hero">
<nav>
<img src="images/menu.png" alt="" class="menu-image" />
<img src="images/logo.png" alt="" 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" alt="" class="lamp" />
<img src="images/light.png" alt="" class="light" id="light" />
</div>
<div class="text-container">
<h1>
Latest <br />
in Lighting
</h1>
<br />
<p>
This is the first lamp from our company . We're making a huge
collection of modern Lamps in all categories from ho,e use to office
use.
</p>
<a href="">Check All Collections</a>
</div>
</div>
<script src="index.js"></script>
</body>
</html>