-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcart.html
36 lines (31 loc) · 871 Bytes
/
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
<!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>Cart</title>
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div id="table-container">
<table>
<thead>
<tr>
<th>Title</th>
<th>Price</th>
<th>Qty</th>
</tr>
</thead>
<tbody id="tbody">
</tbody>
</table>
<hr>
<div id="buttons">
<a href="index.html" class="btn btn-primary">Back to Home</a>
<a id="checkout-btn" class="btn btn-success">Checkout</a>
</div>
</div>
<script src="js/cart.js"></script>
</body>
</html>