-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (44 loc) · 974 Bytes
/
Copy pathindex.html
File metadata and controls
56 lines (44 loc) · 974 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>E-Commerce Website</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="navbar">
<h2>ShopEasy</h2>
<nav>
<a href="index.html">Home</a>
<a href="cart.html">Cart 🛒</a>
</nav>
</header>
<section class="hero">
<h1>Biggest Sale of the Year</h1>
<p>Up to 50% OFF</p>
<button>Shop Now</button>
</section>
<h2 class="section-title">Featured Products</h2>
<section class="products" id="product-list">
</section>
<section class="services">
<div>
<img src="images/delivery.png">
<p>Fast Delivery</p>
</div>
<div>
<img src="images/payment.svg">
<p>Secure Payment</p>
</div>
<div>
<img src="images/support.png">
<p>24/7 Support</p>
</div>
</section>
<footer>
<p>© 2026 ShopEasy. All Rights Reserved.</p>
</footer>
<script src="js/products.js"></script>
<script src="js/script.js"></script>
</body>
</html>