-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
62 lines (54 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<title>Your Cart | Furniture Store</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="styles/style.css" media="screen" type="text/css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript" src="scripts/jquery.store.js"></script>
<script type="text/javascript"
src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</head>
<body id="cart-page">
<div id="site" class="cartcontent">
<header id="masthead">
</header>
<div id="content">
<h1>Your Shopping Cart</h1>
<form id="shopping-cart" action="cart.html" >
<table class="shopping-cart">
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Qty</th>
<th scope="col" colspan="2">Price</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<p id="sub-total">
<strong>Sub Total</strong>: <span id="stotal"></span>
</p>
<ul id="shopping-cart-actions">
<li>
<input type="submit" name="update" id="update-cart" class="btn" value="Update Cart" />
</li>
<li>
<input type="submit" name="delete" id="empty-cart" class="btn" value="Empty Cart" />
</li>
<li>
<a href="index.html" class="btn">Continue Shopping</a>
</li>
<li>
<a href="checkout.html" class="btn">Go To Checkout</a>
</li>
</ul>
</form>
</div>
</div>
<footer id="site-info">
Copyright © Furniture Store 2021 <br> Made with ❤️ By Akash Shinde
</footer>
</body>
</html>