-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcart.html
48 lines (45 loc) ยท 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/reset.css" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/cart.css" />
<link
href="https://unpkg.com/boxicons@2.0.7/css/boxicons.min.css"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@400;700&display=swap"
rel="stylesheet"
/>
<title>ShoesMall</title>
</head>
<body>
<!-- header -->
<header data-include-path="header.html"></header>
<!-- cart -->
<section class="cart-page">
<div class="empty">
<p>Your cart is empty</p>
</div>
<div class="cart-container-box hidden">
<ul class="cart-container"></ul>
<div class="cart-total">
<dl class="total">
<dt class="total-title">Total</dt>
<dd class="total-price"></dd>
</dl>
</div>
<a href="#" class="control-btn total-order">Order selected Items</a>
</div>
</section>
<!-- footer -->
<footer data-include-path="footer.html"></footer>
<script type="module" src="./js/main.js"></script>
<script type="module" src="./js/loadItem.js"></script>
<script type="module" src="./js/cartPage.js"></script>
</body>
</html>