-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
34 lines (31 loc) · 929 Bytes
/
product.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Listing</title>
<link rel="stylesheet" href="product.css">
</head>
<body>
<header class="sticky-header">
<div class="logo">E-Shop</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="cart.html">Cart</a></li>
</ul>
</nav>
</header>
<section class="products">
<h2>Our Products</h2>
<div id="product-grid" class="product-grid">
<!-- Products will be dynamically loaded here -->
</div>
</section>
<footer>
<p>© 2024 E-Shop. All rights reserved.</p>
</footer>
<script src="product.js"></script>
</body>
</html>