-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcart.html
60 lines (59 loc) · 1.97 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
<!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" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous"
referrerpolicy="no-referrer" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link
rel="stylesheet"
href="path/to/font-awesome/css/font-awesome.min.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=PT Mono" />
<link
href="https://fonts.googleapis.com/css?family=Nunito"
rel="stylesheet" />
<link rel="stylesheet" href="./CSS/header.css" />
<link rel="stylesheet" href="./CSS/cart.css" />
<link rel="stylesheet" href="./CSS/footer.css"/>
<title>Cart | Page</title>
</head>
<body>
<header id="header"></header>
<div id="cart-div">
<h1>Shopping Cart</h1>
<div id="display-div"></div>
<div id="checkout-div">
<h5>I am 18+</h5>
<p>
<i class="fa-solid fa-toggle-on fa-xl" style="color: #bf0d12"></i>An
adult signature (18+) is required for delivery
</p>
<div id="total-price">
<div id="sub-items">
<h3>Subtotal</h3>
<span id="total-items"></span>
</div>
<div id="price-total"></div>
</div>
<button
id="checkoutBtn"
onclick="window.location.href = './info.html';">
Checkout
</button>
</div>
</div>
<div id="wrapper"></div>
<script type="module" src="./JS/importedHeader.js"></script>
<script type="module" src="./JS/cart.js"></script>
</body>
</html>