-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
60 lines (52 loc) · 1.77 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
54
55
56
57
58
59
60
<!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">
<link rel="stylesheet" href="./styles/cart.css">
<!-- <link rel="stylesheet" href="./styles/footer.css"> -->
<link rel="stylesheet" href="./styles/navbar.css">
<link rel="shortcut icon" href="//cdn.shopify.com/s/files/1/0052/7551/6995/files/LOGO_32x32.png?v=1548735766" type="image/png">
<title>Your Shopping Cart - FAB BAG</title>
</head>
<body>
<div id = "navbar"></div>
<h1>My Cart</h1>
<div id="myCart">
<div id="productDetails">
<table>
<thead>
<tr>
<th>PRODUCT</th>
<th></th>
<th>QTY</th>
<th>PRICE</th>
</tr>
<tr>
<td>
<div><hr></div>
</td>
</tr>
</thead>
<tbody>
<!-- Append product details here -->
</tbody>
<tr>
<td>
<div><hr></div>
</td>
</tr>
</table>
</div>
<div id="totalPrice">
<p id="tPrice"></p>
<button id="update">UPDATE CART</button>
<br>
<button id="checkout"><a href="./checkout.html">CHECK OUT</a></button>
</div>
</div>
<!-- <div class="footer"></div> -->
</body>
</html>
<script src="./scripts/cart_script.js" type = "module"></script>