forked from PatelHarsh2006/ChaatBazaar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
34 lines (30 loc) · 774 Bytes
/
cart.html
File metadata and controls
34 lines (30 loc) · 774 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cart - ChaatBazar</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="logo">ChaatBazar 🍴</div>
<nav>
<a href="index.html">Home</a>
<a href="menu.html">Menu</a>
<a href="cart.html">Cart</a>
<a href="about.html">About</a>
</nav>
</header>
<section class="cart-page">
<h1>Your Cart</h1>
<div id="cart-items"></div>
<p id="total-price"></p>
<button onclick="checkout()">Checkout</button>
</section>
<footer>
<p>© 2026 ChaatBazar. All rights reserved.</p>
</footer>
<script src="js/main.js"></script>
</body>
</html>