-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomer.html
29 lines (29 loc) · 935 Bytes
/
customer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Catalog</title>
<link rel="stylesheet" href="customer.css">
</head>
<body>
<header>
<h1>Welcome to QuicklyFresh</h1>
<input type="text" id="search-bar" placeholder="Search for products...">
<button id="cart-button" style="color: white; text-decoration: none;"><a href="cart.html">Your Cart</a></button>
<a href="index.html">
<button id="home-btn">Home</button>
</a>
</header>
<main>
<section id="product-list">
<h2>Available Products</h2>
<div id="products" class="product-grid"></div>
</section>
</main>
<footer>
<p>© 2024 Vendor Management System. All rights reserved.</p>
</footer>
<script src="customer.js"></script>
</body>
</html>