-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
71 lines (67 loc) · 2.64 KB
/
cart.html
File metadata and controls
71 lines (67 loc) · 2.64 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cart - HungerGenie</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<header>
<div class="container">
<nav>
<a href="index.html" class="logo">
<img src="images/HungerGenie Logo.png" alt="Logo">
<span class="logo-text">HungerGenie</span>
</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="restaurants.html">Restaurants</a>
<a href="products.html">Products</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact</a>
<a href="cart.html" class="cart-link"><i class="fas fa-shopping-cart"></i> Cart</a>
<button id="theme-toggle" class="theme-toggle" aria-label="Toggle dark mode">
<i class="fas fa-moon"></i>
</button>
</div>
</nav>
</div>
</header>
<main>
<section class="cart-section">
<div class="container">
<h1 class="cart-title">Your Cart</h1>
<div class="cart-content">
<div class="cart-items">
<!-- Cart items will be dynamically loaded here -->
</div>
<div class="cart-summary">
<h2>Order Summary</h2>
<div class="summary-row">
<span>Subtotal:</span>
<span id="subtotalAmount">$0.00</span>
</div>
<div class="summary-row">
<span>Delivery Charge:</span>
<span>$2.00</span>
</div>
<div class="summary-row total">
<span>Total:</span>
<span id="totalAmount">$0.00</span>
</div>
<button class="checkout-btn">Proceed to Checkout</button>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2025 HungerGenie. Delivering happiness, one meal at a time.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>