-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
53 lines (41 loc) · 1.51 KB
/
cart.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<title>Cart</title>
</head>
<body>
<div class="container">
<h1>Let's Bake</h1>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="index.html">About</a></li>
<li>
<select id="category-select">
<option value="" disabled selected>Categories</option>
<option value="birthday.html">Birthday Cake</option>
<option value="wedding.html">Wedding Cake</option>
<option value="custom.html">Custom Cake</option>
</select>
</li>
<li><a href="cart.html">Cart</a></li>
<li><a href="./index.html">Contact</a></li>
</ul>
</nav>
</div>
<div class="container">
<h1>Your Cart</h1>
<div id="cart-items"></div>
<div id="total-price">Total: ₹0</div>
<button id="checkout" class="btn1 btn2">Checkout</button>
<footer id="ft">
<p>© 2024 Let's Bake | All rights reserved</p>
</footer>
<script src="script.js"></script>
</div>
</body>
</html>