-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShoppingcart.html
160 lines (119 loc) · 6.16 KB
/
Shoppingcart.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="no">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rainydays - Cart</title>
<link rel="stylesheet" href="styles/main.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="cart-details-container">
<section id="nav" class="nav">
<a href="productlist.html?id=16">Men</a>
<a href="productlist.html?id=16">Women</a>
<a href="index.html" id="mobile-menu-logo"><img alt="rainydays logo" src="images/logo/rainydays_Logo_white_190.png"></a>
<a href="productlist.html?id=16">Kids</a>
<a href="productlist.html?id=16">Accesories</a>
<a href="#" onclick="displayhamburger()" id="mobile-menu-icon"><span class="material-icons">
menu</span>
</a>
</section>
<section class="nav mobile-nav" id="mobile-nav">
<a href="./index.html">Home</a>
<a href="productlist.html?id=16">Men</a>
<a href="productlist.html?id=16">Women</a>
<a href="productlist.html?id=16">Kids</a>
<a href="productlist.html?id=16">Accesories</a>
<a href="./customerservice.html">Customer support</a>
</section>
<section class="cart-container">
<h1>Shopping cart</h1>
<div id="1x" class="cart-list">
<img src="./images/products/vestergapet/vestergapet45-s.jpg">
<p>Farbakken jacket<br>
Size: Small<br>
Price: <span id="price1">999</span>,-</p>
<span id="1" class="cart-amount-btns">
<span class="cart-amount" id="minus1" onclick="change(this)">-</span>
<p id="amount1">1</p>
<span class="cart-amount" id="plus1" onclick="change(this)">+</span>
</span>
<p>Subtotal:<br>
<span id="total1">999</span>,-</p>
</div>
<div id="2x" class="cart-list">
<img src="./images/products/vestergapet/vestergapet45-s.jpg">
<p>Farbakken jacket<br>
Size: Medium<br>
Price: <span id="price2">999</span>,-</p>
<span id="2" class="cart-amount-btns">
<input type="hidden" name="product2" id="product" value="3">
<span class="cart-amount" id="minus2" onclick="change(this)">-</span>
<p id="amount2">1</p>
<span class="cart-amount" id="plus2" onclick="change(this)">+</span>
</span>
<p>Subtotal<br>
<span id="total2">999</span>,-</p>
</div>
<div id="3x" class="cart-list">
<img src="./images/products/vestergapet/vestergapet45-s.jpg">
<p>Farbakken jacket<br>
Size: Xtra large<br>
Price: <span id="price3">999</span>,-</p>
<span id="3" class="cart-amount-btns">
<span class="cart-amount" id="minus3" onclick="change(this)">-</span>
<p id="amount3">1</p>
<span class="cart-amount" id="plus3" onclick="change(this)">+</span>
</span>
<p>Subtotal<br>
<span id="total3">999</span>,-</p>
</div>
<div class="cart-list-btns">
<p>Total order value:<br>
<span id="total">2997</span>,-</p>
<a href="./productlist.html" class="button-wide">Continue shopping</a>
<a href="./checkout.html" class="button-wide">Checkout</a>
</div>
</section>
<section class="footer-section">
<div class="footer-child-left">
<h3>Usefull links</h3>
<p>Highly durable waterproof membrane ensures breathable protection against any weather</p>
<a class="footer-link" href="./about.html">About us</a>
<a class="footer-link" href="./customerservice.html">Customer support</a>
<a class="footer-link" href="./terms.html">Terms and conditions</a>
</div>
<div class="footer-child-center">
<h3>#RAINYDAYS</h3>
<p>Tag your instagram experience</p>
<div class="insta-container">
<img alt="Raincoat image by" src="./images/instagram/instashots1-s.jpg">
<img alt="Rain image by" src="./images/instagram/instashots2-s.jpg">
<img alt="Image by Luca Massimilian" src="./images/instagram/instashots3-s.jpg">
<img alt="Image by Victor xok" src="./images/instagram/instashots4-s.jpg">
<img alt="Image by Jakub kriz" src="./images/instagram/instashots5-s.jpg">
<img alt="Image by Jonny Caspari" src="./images/instagram/instashots6-s.jpg">
</div>
</div>
<div class="footer-child-right text-shadow">
<h3>About us</h3>
<p>Situated in the heart of Norway we
know bad weather!
In 2008 we made a promise to keep
our customers dry in every situation.
All of our products are tested in real
weather and we guarantee that our
products will satisfy our customers</p>
<a class="footer-link" href="./about.html">Read more</a>
</div>
<div class="footer-child-bottom text-shadow">
</div>
</section>
</div>
<script src="js/cart.js"></script>
<script src="js/main.js"></script>
</body>
</html>