-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
79 lines (63 loc) · 2.25 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!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>Document</title>
<link rel="stylesheet" href="./styless/nav.css">
<link rel="stylesheet" href="./styless/cart.css">
<link rel="stylesheet" href="styless/footer.css">
<style>
</style>
</head>
<body>
<div id="container">
<div id="navbar"></div>
<div id="container1">
<div class="tableheading">
<table>
<thead class="carttable">
<tr>
<th>Image</th>
<th>Product Name</th>
<th>Quantity</th>
<th>Unit Price</th>
<th>Total</th>
<th>Remove</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="head">
<p>What would you like to do next?</p>
</div>
<div id="Coupon-div">
<form action="">
<input id="Coupon" type="text" placeholder="Enter Your Coupon here">
<input type="submit" value="Apply">
</form>
</div>
<div id="total-div">
<p id="subtotal"></p>
<p id="total"></p>
</div>
<div id="cart-bottom-btn">
<button> <a href="new.html" target="_blank" style="color: white; text-decoration: none;">Continue
Shopping</a></button>
<button><a href="checkout.html" target="_blank"
style="color: white; text-decoration: none;">Checkout</a></button>
</div>
</div>
<div id="bigcontainer">
<!-- <----subscript-------------- -->
<!-- upper -->
</div>
</div>
</body>
</html>
<script type="module" src="./jsscripts/nav.js"></script>
<script src="./cart.js"></script>
<script type="module" src="./jsscripts/footer.js"></script>