-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
29 lines (27 loc) · 837 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cart | Plant Haven</title>
<link rel="stylesheet" href="./styles/home.css">
</head>
<body>
<nav class="navbar">
<div class="navbar-content">
<div class="logo">🪴 Plant Haven</div>
<div class="nav-links">
<a href="./home.html">Home</a>
</div>
</div>
</nav>
<div class="cart-container">
<h1>Your Cart</h1>
<div id="cartItems"></div>
<div id="cartTotal"></div>
<button id="checkoutButton" class="buy-button">Proceed to Checkout</button>
</div>
<script src="https://js.stripe.com/v3/"></script>
<script src="./javascript/cart.js"></script>
</body>
</html>