-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
37 lines (32 loc) · 859 Bytes
/
shop.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Shop</title>
<link rel="stylesheet" href="css/shop.css" />
</head>
<body class="">
<div class="container">
<header>
<h1>Your Shopping Cart</h1>
<div class="shopping">
<img src="assets/shoppingBag.jpg" alt="shopping" />
<span class="quantity">0</span>
</div>
</header>
<div class="list"></div>
</div>
<div class="cart">
<h1>Shopping Cart</h1>
<ul class="listCard"></ul>
<div class="checkout">
<div class="total">Net Total: 0</div>
<div class="proceedCheckout">
<a href="checkoutPage.html">CheckOut</a>
</div>
</div>
<div class="closeShopping">Close</div>
</div>
<script src="script/shop.js"></script>
</body>
</html>