forked from Hughsin23/scooby-doos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
90 lines (74 loc) · 2.17 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Metal+Mania&family=Paytone+One&family=Space+Mono&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Agbalumo&family=Metal+Mania&family=Paytone+One&family=Space+Mono&display=swap"
rel="stylesheet">
<!-- Stylesheet -->
<link rel="stylesheet" href="./style.css" />
<title>Document</title>
</head>
<body>
<!-- Add Header -->
<header>
<!-- Navigation Links -->
<div class="top-header">
<div class="logo">
<a>
<img src="./images/Wiskers and Wag.png" alt="logo" width="128" height="128">
<span>Whiskers & Wag</span>
</a>
</div>
<div id="clock"></div>
<a class="cart" href="./cart.html">
<img src="./images/shopping_cart.png" alt="shopping cart" width="30" height="30" />
</a>
</div>
<nav class="navbar-row">
<li><a href="./index.html">HOME</a></li>
<li><a href="./cat.html">CAT</a></li>
<li><a href="./dog.html">DOG</a></li>
</nav>
</header>
<main>
<div class="banner">
<h1>Your Pet's Paradise</h1>
</div>
<h1>Your Cart</h1>
<section id="cart-container">
</section>
<br>
<div class="cart-cost">
<div class="cost-paragraphs">
<p>Cart Price</p>
<p id="cart-total"></p>
</div>
<button id="clear-cart" class="product-button">Clear my cart</button>
<button class="product-button">Checkout</button>
</div>
<br>
</main>
<!-- Footer -->
<footer>
<div>
<p id="learners" hidden></p>
<h4>Cohort:</h4>
<p id="cohort"></p>
<h4>Instructor:</h4>
<p id="instructor"></p>
<h4>Project Team</h4>
<p id="selectedLearners"></p>
</div>
<p>© 2023 Whiskers & Wag</p>
</footer>
<script src="./cart.js"></script>
<script src="fetch.js"></script>
</body>
</html>