forked from Aniket-Pilankar/Gymshark_FRONTEND_Unit4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbag.html
60 lines (41 loc) · 1.5 KB
/
bag.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
<!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>Gymshark.com/Cart</title>
<script src="https://kit.fontawesome.com/f15c774cad.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./styles/bag.css">
<link rel="stylesheet" href="./styles/nav.css">
<link rel="stylesheet" href="./styles/footer.css">
<link rel="icon" href="https://cdn.shopify.com/s/files/1/0156/6146/files/icon-200_767692d6-7327-4714-8ce6-69826dd054a5_72x72.png?v=1510932724" type="image/icon type">
</head>
<body>
<div id="navbar12"></div>
<table border="1">
<thead>
<tr>
<td>ITEM</td>
<td class="text_align">QUANTITY</td>
<td class="text_align">SUBTOTAL</td>
</tr>
</thead>
<tbody>
</tbody>
<tfoot>
<tr>
<td><a href="./category.html">Continue Shopping</a></td>
<td>Total</td>
<td id="TotalAmountOfProduct">-</td>
</tr>
</tfoot>
</table>
<div id="CheckOut_Div">
<button id="CheckOutButton">CHECKOUT</button>
</div>
<div id="main_footer_div">
</body>
</html>
<script src="./scripts/bag.js" type="module">
</script>