-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
33 lines (33 loc) · 1.19 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
<!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="./Css/style.css">
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<title>TG Store- Cart</title>
</head>
<body>
<div class="cart-page">
<h1 class="cart-heading">Cart</h1>
<table class="cart">
<thead class="cartHeader">
<th class="name">Name</th>
<th class="price">Price</th>
<th class="quantity">Quantity</th>
<th class="total" colspan="2">Total</th>
</thead>
<tbody class="cartItems">
<td colspan="5" style="text-align: center;">Cart is Empty!!</td>
</tbody>
</table>
<div class="buttons">
<a href="./index.html#all-items" class="order">Add More Items</a>
<a href="./checkout.html" class="order secondary" onclick="goToCheckout(event)">Place Order</a>
<button class="order " onclick="clearAll()" >Clear All</button>
</div>
</div>
<script src="./Scripts/cart.js"></script>
</body>
</html>