-
Notifications
You must be signed in to change notification settings - Fork 2
/
cart.html
47 lines (44 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/Styles/cart.css" />
<title>Document</title>
</head>
<body>
<section>
<div id="total-heading"></div>
<hr />
<div id="item-description">
<p>ITEM DESCRIPTION</p>
<div class="item-detail">
<p>UNIT PRICE</p>
<p>QUANTITY</p>
<p>SUBTOTAL</p>
<p id="savings">SAVINGS</p>
</div>
</div>
<div id="description-total"></div>
<div id="products-detail"></div>
</section>
<section id="Check-Out">
<button id="Empty-Basket-Btn">
<span
><img
width="20"
height="20"
src="https://img.icons8.com/pastel-glyph/64/shopping-basket-2--v2.png"
alt="shopping-basket-2--v2"
width="" /></span
>Empty Basket
</button>
<div id="checkout-template"></div>
</section>
<script src="/JavaScript/cart.js"></script>
</body>
</html>