-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart2.html
More file actions
160 lines (145 loc) · 4.17 KB
/
cart2.html
File metadata and controls
160 lines (145 loc) · 4.17 KB
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="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="./Navbar/navbar.css" />
<link rel="stylesheet" href="./styles/cartFinal.css" />
<title>Cart</title>
</head>
<body>
<div id="navbar"></div>
<!--cart page body-->
<p id="heading">SHOPPING BAG</p>
<div id="main">
<div class="item">
<hr />
</div>
<div id="summary">
<h3>Summary</h3>
<div class="cash">
<p>Subtotal</p>
<div>
<!-- <p>$ </p> -->
<p id="totalprice"></p>
</div>
</div>
<div class="cash">
<p>Delivery</p>
<p id="delivery">$ 600</p>
</div>
<hr />
<div class="cash">
<p>Total</p>
<p id="totalcash"></p>
</div>
<button id="checkout">Go To Checkout</button>
</div>
</div>
<!-- Recommandation section -->
<div id="rec">
<p id="recommendation">Recommandation</p>
<button id="shop">Shop Now</button>
</div>
<div class="wrapper">
<figure>
<div class="hover-animation">
<img
src="https://cdn-images.farfetch-contents.com/18/57/27/30/18572730_40035494_600.jpg"
alt=""
class="img-back"
/>
<img
src="https://cdn-images.farfetch-contents.com/18/57/27/30/18572730_40034933_600.jpg"
alt=""
class="img-front"
/>
</div>
<figcaption>
<h3>Rolex</h3>
<p>pre-owned Cosmograph Daytona Arabic 40mm</p>
</figcaption>
</figure>
<figure>
<div class="hover-animation">
<img
src="https://cdn-images.farfetch-contents.com/16/71/00/42/16710042_35761183_600.jpg"
alt=""
class="img-back"
/>
<img
src="https://cdn-images.farfetch-contents.com/16/71/00/42/16710042_35759603_600.jpg"
alt=""
class="img-front"
/>
</div>
<figcaption>
<h3>Jacquemus</h3>
<p>Le Pichoto mini bag</p>
</figcaption>
</figure>
<figure>
<div class="hover-animation">
<img
src="https://cdn-images.farfetch-contents.com/17/98/33/30/17983330_39304618_600.jpg"
alt=""
class="img-back"
/>
<img
src="https://cdn-images.farfetch-contents.com/17/98/33/30/17983330_39304625_600.jpg"
alt=""
class="img-front"
/>
</div>
<figcaption>
<h3>Pas Normal Studios</h3>
<p>Escapism packable down jacket</p>
</figcaption>
</figure>
<figure>
<div class="hover-animation">
<img
src="https://cdn-images.farfetch-contents.com/18/05/66/09/18056609_38273965_600.jpg"
alt=""
class="img-back"
/>
<img
src="https://cdn-images.farfetch-contents.com/18/05/66/09/18056609_38273966_600.jpg"
alt=""
class="img-front"
/>
</div>
<figcaption>
<h3>Y-3</h3>
<p>logo-patch zipped backpack</p>
</figcaption>
</figure>
<figure>
<div class="hover-animation">
<img
src="https://cdn-images.farfetch-contents.com/16/72/91/52/16729152_33569235_600.jpg"
alt=""
class="img-back"
/>
<img
src="https://cdn-images.farfetch-contents.com/16/72/91/52/16729152_33569234_1000.jpg"
alt=""
class="img-front"
/>
</div>
<figcaption>
<h3>Maison Kitsuné</h3>
<p>fox-patch polo shirt</p>
</figcaption>
</figure>
</div>
</body>
</html>
<!-- navbar -->
<script type="module">
import navbar from "./Navbar/navbar.js";
document.querySelector("#navbar").innerHTML = navbar();
</script>
<script src="./cart-page/cart.js" type="module"></script>
<script src="./cart-page/cart2.js"></script>