-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
63 lines (53 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<title>Bus Mall Store</title>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header>
<h1>Bus Mall Store</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="cart.html">Cart</a><span id="itemCount"></span></li>
</ul>
</nav>
</header>
<main>
<section class="deck col-1">
<div class="card">
<header>
<h1>Your Cart</h1>
</header>
<div class="copy">
<ol>
<li>Click the "X" next to any item to remove it from your cart</li>
</ol>
</div>
</div>
</section>
<section class="deck col-1">
<div class="card">
<table id="cart">
<thead>
<tr>
<th>Remove</th>
<th>Quantity</th>
<th>Item</th>
</tr>
</thead>
<tbody></tbody>
<tfoot></tfoot>
</table>
</div>
</section>
</main>
<footer>
<p>©2018 Code Fellows 201d33</p>
</footer>
<script src='js/app.js'></script>
<script src='js/cart.js'></script>
</body>
</html>