-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path1.html
More file actions
40 lines (39 loc) · 1.54 KB
/
1.html
File metadata and controls
40 lines (39 loc) · 1.54 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Landing Page</title>
<link rel="stylesheet" href="1.css">
</head>
<body>
<div class="container">
<div class="wrapper">
<div class="navbar">
<div class="logo"></div>
<ul class="navlist" id="navlist">
<li><a href="#">Home</a></li>
<li><a href="#">Orders</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Contact</a></li>
</ul>
<div class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</div>
<div class="hero">
<img src="pngwing.com.png" alt="">
<div class="content">
<h3>Organic</h3>
<h1>SKIN ESSENCE</h1>
<p>Premium Certified Organic Skin Care Products. 100% Natural, Results Based, Environmentally Conscious For Healthy Glowing Skin With Anti-Aging Benefits. By Using certified organic products you are assured that every ingredient used has been carefully considered and inspected to exceed USDA.</p>
<button>Shop Now</button>
</div>
</div>
</div>
</div>
<script src="./1.js"></script>
</body>
</html>