-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
37 lines (29 loc) · 949 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
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Clothify - My Cart</title>
<link rel="stylesheet" href="src/css/style.css">
<!-- this is for loading the cart logo -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css">
</head>
<body>
<div class="navbar">
<h2>
<a href="index.html">Clothify Cart</a>
</h2>
<div class="cart">
<i class="bi bi-cart3"></i>
<div id="cartItems" class="cartItems">0</div>
</div>
</div>
<div id="label" class="cart-buttons">
</div>
<div id="final-cart" class="final-cart">
</div>
</body>
<script src="src/javascript/shopData.js"></script>
<script src="src/javascript/cart.js"></script>
</html>