-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshopping-cart.html
143 lines (141 loc) · 4.53 KB
/
shopping-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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Hotjar Tracking Code for https://rainydaysecommerce.netlify.app/ -->
<script>
(function (h, o, t, j, a, r) {
h.hj =
h.hj ||
function () {
(h.hj.q = h.hj.q || []).push(arguments);
};
h._hjSettings = { hjid: 2605195, hjsv: 6 };
a = o.getElementsByTagName("head")[0];
r = o.createElement("script");
r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(window, document, "https://static.hotjar.com/c/hotjar-", ".js?sv=");
</script>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Online shop selling men's and woman's rain jackets for outdoor activites"
/>
<meta
name="keywords"
content="Jackets, outdoor, activites, hiking, skiing, camping,canoeing "
/>
<meta name="author" content="Josefine Holth Development" />
<link rel="icon" href="/images/Logo.png" type="image/x-icon" />
<link rel="stylesheet" href="/styles/navbar.css" />
<link rel="stylesheet" href="/styles/style.css" />
<link rel="stylesheet" href="/styles/checkout.css" />
<script src="https://unpkg.com/ionicons@5.4.0/dist/ionicons.js"></script>
<title>Rainyday | Shopping Cart</title>
</head>
<body>
<header>
<a href="index.html" class="logo">
<img class="logo" src="/images/Logo.png" alt="Rainyday Logo" />
</a>
<div class="menu-items">
<label for="dropdown-menu">
<ion-icon name="menu-outline"></ion-icon>
</label>
<input type="checkbox" id="dropdown-menu" />
<nav>
<ul>
<li><a href="/list-of-jackets.html#men-jackets">men</a></li>
<li><a href="/list-of-jackets.html#woman-jackets">woman</a></li>
<li><a href="/list-of-jackets.html">jackets</a></li>
<li><a href="/contact.html">contact</a></li>
<li><a href="/about.html">about</a></li>
</ul>
</nav>
<div class="nav_shop">
<a href="/shopping-cart.html">
<img class="shopping-cart" src="/images/icons/shopping-cart.png" alt="Your shopping cart">
</a>
<span class="shoppingCardCounter"></span>
</div>
</div>
</div>
</header>
<main>
<section>
<div class="shoppingCartMessage">
<p>You shopping cart is empty</p>
<a href="/list-of-jackets.html"
>Go back and look between the selection for jackets</a
>
</div>
<div id="sections" class="shoppingCartSection">
</div>
<div class="buttons">
<button href="checkout_Cart.html" class="goToCheckout button"
>go to checkout</
>
<button class="emptyCart">Empty Cart</button>
</div>
</div>
</section>
</main>
<footer>
<div>
<img
class="logo"
src="/images/RainyDays_Logo_white.png"
alt="Rainydays white logo"
/>
</div>
<div class="links">
<ul>
<li><a href="/list-of-jackets.html">Woman</a></li>
<li><a href="/list-of-jackets.html">Men</a></li>
<li><a href="/list-of-jackets.html">Jackets</a></li>
<li><a href="/contact.html">Contact</a></li>
<li><a href="/about.html">About</a></li>
</ul>
</div>
<div class="social_links">
<div>
<a href="#">
<img
class="icons"
src="/images/icons/speech-bubble.png"
alt="Chat With Us"
/>
</a>
</div>
<div>
<a href="#">
<img
src="/images/icons/facebook-logo.png"
alt="link to our facebook"
class="icons"
/>
</a>
</div>
<div>
<a href="#">
<img
src="/images/icons/instagram.png"
alt="Our Instagram"
class="icons"
/>
</a>
</div>
</div>
<div class="copyright">
<p>© Josefine Holth Development 2021</p>
</div>
</footer>
<script src="js/components/display-shopping-cart.js"></script>
<script src="js/shoppingCart.js"></script>
<script src="/plusMinus.js"></script>
<script src="js/shopping_cart.js"></script>
</body>
</html>