-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcart.html
More file actions
423 lines (370 loc) · 22.7 KB
/
cart.html
File metadata and controls
423 lines (370 loc) · 22.7 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cart</title>
<!-- Bootstrap CSS CDN-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!--Owl carousel CDN-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css" integrity="sha256-UhQQ4fxEeABh4JrcmAJ1+16id/1dnlOEVCFOxDef9Lw=" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css" integrity="sha256-kksNxjDRxd/5+jGurZUJd1sdR2v+ClrCl3svESBaJqw=" crossorigin="anonymous" />
<!--Font awesome icons-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/css/all.min.css" integrity="sha256-46r060N2LrChLLb5zowXQ72/iKKNiw/lAmygmHExk/o=" crossorigin="anonymous" />
<!--custom CSS file-->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- start #header-->
<header id="header">
<div class="strip d-flex justify-content-between px-4 py-1 bg-light">
<p class="font-rale font-size-12 text-black-50 m-0">Mumbai,India 401107</p>
<div class="font-rale font-size-14">
<a href="#" class="px-3 border-right border-left text-dark">Login</a>
<a href="#" class="px-3 border-right text-dark">Wishlist(0)</a>
</div>
</div>
<!-- Primary Navigation-->
<nav class="navbar navbar-expand-lg navbar-dark color-second-bg">
<a class="navbar-brand" href="#">SHOP</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav m-auto font-rubik">
<li class="nav-item active">
<a class="nav-link" href="#">On Sale</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Category</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Products <i class=" fas fa-chevron-down"></i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Category <i class=" fas fa-chevron-down"></i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Coming Soon</a>
</li>
</ul>
<form ction="#" class="font-size-14 font-rale">
<a href="#" class="py-2 rounded-pill color-primary-bg">
<span class="font-size-16 px-2 text-white"><i class="fas fa-shopping-cart"></i></span>
<span class="px-3 py-2 rounded-pill text-dark bg-light">0</span>
</a>
</form>
</div>
</nav>
<!-- Primary Navigation-->
</header>
<!-- End #header-->
<!-- start #main-site-->
<main id="main-site">
<!--shoping cart section-->
<section id="cart" class="py-3">
<div class="container-fluid w-75">
<h5 class="font-baloo font-size-20">Shopping Cart</h5>
<!--shopping cart items-->
<div class="row">
<div class="col-sm-9">
<!--cart item-->
<div class="row border-top py-3 mt-3">
<div class="col-sm-2">
<img src="assets/products/1.png" style="height:120px;"alt="cart1" class="img-fluid">
</div>
<div class="col-sm-8">
<h5 class="font-baloo font-size-20">Samsung Galaxy 10</h5>
<small>by Samsung</small>
<!--product rating-->
<div class="d-flex">
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<a href="#" class="px-2 font-rale font-size-14">20,534 ratings</a>
</div>
<!--!product rating-->
<!--product qty -->
<div class="qty d-flex pt-2">
<div class="d-flex font-rale w-25">
<button class="qty-up border bg-light" data-id="pro1"><i class="fas fa-angle-up"></i></button>
<input type="text" data-id="pro1" class="qty_input border px-2 w-100 bg-light" disabled value="1" placeholder="1">
<button data-id="pro1" class="qty-down border bg-light"><i class="fas fa-angle-down"></i></button>
</div>
<button type="submit" class="btn font-baloo text-danger px-3 border-right">Delete</button>
<button type="submit" class="btn font-baloo text-danger">Save for Later</button>
</div>
<!--!product qty -->
</div>
<div class="col-sm-2 text-right">
<div class="font-size-20 text-danger font-baloo">
$<span class="product_price">152.00</span>
</div>
</div>
</div>
<!--!cart item-->
<!--cart item-->
<div class="row border-top py-3 mt-3">
<div class="col-sm-2">
<img src="assets/products/2.png" style="height:120px;"alt="cart1" class="img-fluid">
</div>
<div class="col-sm-8">
<h5 class="font-baloo font-size-20">Redmi Note 8 Pro</h5>
<small>by Redmi</small>
<!--product rating-->
<div class="d-flex">
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<a href="#" class="px-2 font-rale font-size-14">20,534 ratings</a>
</div>
<!--!product rating-->
<!--product qty -->
<div class="qty d-flex pt-2">
<div class="d-flex font-rale w-25">
<button class="qty-up border bg-light"><i class="fas fa-angle-up"></i></button>
<input type="text" class="qty_input border px-2 w-100 bg-light" disabled value="1" placeholder="1">
<button class="qty-down border bg-light"><i class="fas fa-angle-down"></i></button>
</div>
<button type="submit" class="btn font-baloo text-danger px-3 border-right">Delete</button>
<button type="submit" class="btn font-baloo text-danger">Save for Later</button>
</div>
<!--!product qty -->
</div>
<div class="col-sm-2 text-right">
<div class="font-size-20 text-danger font-baloo">
$<span class="product_price">102.00</span>
</div>
</div>
</div>
<!--!cart item-->
</div>
<!-- subtotal section-->
<div class="col-sm-3">
<div class="sub-total border text-center mt-2">
<h6 class="font-size-12 font-rale text-success py-3"><i class="fas fa-check"></i> Your order is eligible for FREE Delivery</h6>
<div class="border-top py-4">
<h5 class="font-baloo font-size-20">Subtotal (2 item): <span class="text-danger">$<span class="text-danger" id="deal-price">152.00</span></h5>
<button type="submit" class="btn btn-warning mt-3">Proceed to Buy</button>
</div>
</div>
</div>
<!-- !subtotal section-->
</div>
<!--!shopping cart items-->
</div>
</section>
<!--!shoping cart section-->
<!-- New Phones-->
<section id="new-phones">
<div class="container py-5">
<h4 class="font-rubik font-size-20">New Phones</h4>
<hr>
<!--owl carousel-->
<div class="owl-carousel owl-theme">
<div class="item py-2 bg-light">
<div class="product font-rale">
<a href="#"><img src="assets/products/1.png" alt="product1" class="img-fluid"></a>
<div class="text-center">
<h6>Samsung Galaxy 10</h6>
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<div class="price py-2">
<span>$152</span>
</div>
<button type="submit" class="btn btn-warning font-size-12">Add to Cart</button>
</div>
</div>
</div>
<div class="item py-2 bg-light">
<div class="product font-rale">
<a href="#"><img src="assets/products/2.png" alt="product1" class="img-fluid"></a>
<div class="text-center">
<h6>Redmi Note 7</h6>
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<div class="price py-2">
<span>$152</span>
</div>
<button type="submit" class="btn btn-warning font-size-12">Add to Cart</button>
</div>
</div>
</div>
<div class="item py-2 bg-light">
<div class="product font-rale">
<a href="#"><img src="assets/products/3.png" alt="product1" class="img-fluid"></a>
<div class="text-center">
<h6>Redmi Note 7</h6>
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<div class="price py-2">
<span>$152</span>
</div>
<button type="submit" class="btn btn-warning font-size-12">Add to Cart</button>
</div>
</div>
</div>
<div class="item py-2 bg-light">
<div class="product font-rale">
<a href="#"><img src="assets/products/4.png" alt="product1" class="img-fluid"></a>
<div class="text-center">
<h6>Redmi Note 7</h6>
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<div class="price py-2">
<span>$152</span>
</div>
<button type="submit" class="btn btn-warning font-size-12">Add to Cart</button>
</div>
</div>
</div>
<div class="item py-2 bg-light">
<div class="product font-rale">
<a href="#"><img src="assets/products/5.png" alt="product1" class="img-fluid"></a>
<div class="text-center">
<h6>Redmi Note 7</h6>
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<div class="price py-2">
<span>$152</span>
</div>
<button type="submit" class="btn btn-warning font-size-12">Add to Cart</button>
</div>
</div>
</div>
<div class="item py-2 bg-light">
<div class="product font-rale">
<a href="#"><img src="assets/products/6.png" alt="product1" class="img-fluid"></a>
<div class="text-center">
<h6>Redmi Note 7</h6>
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<div class="price py-2">
<span>$152</span>
</div>
<button type="submit" class="btn btn-warning font-size-12">Add to Cart</button>
</div>
</div>
</div>
<div class="item py-2 bg-light">
<div class="product font-rale">
<a href="#"><img src="assets/products/8.png" alt="product1" class="img-fluid"></a>
<div class="text-center">
<h6>Redmi Note 7</h6>
<div class="rating text-warning font-size-12">
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="fas fa-star"></i></span>
<span><i class="far fa-star"></i></span>
</div>
<div class="price py-2">
<span>$152</span>
</div>
<button type="submit" class="btn btn-warning font-size-12">Add to Cart</button>
</div>
</div>
</div>
</div>
<!--owl carousel-->
</div>
</section>
<!-- New Phones-->
</main>
<!-- End #main-site-->
<!-- start #footer-->
<footer id="footer" class="bg-dark text-white py-5 mt-4">
<div class="container">
<div class="row">
<div class="col-lg-3 col-12">
<h4 class="font-rubik font-size-20">Shop</h4>
<p class="font-size-14 font-rale text-white-50">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Obcaecati, saepe rerum sit nihil assumenda ipsa, quasi, deserunt.</p>
</div>
<div class="col-lg-4 col-12">
<h4 class="font-rubik font-size-20">News Letter</h4>
<form class="form-row">
<div class="col">
<input type="text" class="form-control" placeholder="Email *">
</div>
<div class="col">
<button type="submit" class="btn btn-primary mb-2">Subscribe</button>
</div>
</form>
</div>
<div class="col-lg-2 col-12">
<h4 class="font-rubik font-size-20">Information</h4>
<div class="d-flex flex-column flex-wrap">
<a href="#" class="font-rale font-size-14 text-white-50 pb-1">About Us</a>
<a href="#" class="font-rale font-size-14 text-white-50 pb-1">Delivery Information</a>
<a href="#" class="font-rale font-size-14 text-white-50 pb-1">Privacy Policy</a>
<a href="#" class="font-rale font-size-14 text-white-50 pb-1">Terms & Conditions</a>
</div>
</div>
<div class="col-lg-2 col-12">
<h4 class="font-rubik font-size-20">Account</h4>
<div class="d-flex flex-column flex-wrap">
<a href="#" class="font-rale font-size-14 text-white-50 pb-1">My Account</a>
<a href="#" class="font-rale font-size-14 text-white-50 pb-1">Order History</a>
<a href="#" class="font-rale font-size-14 text-white-50 pb-1">Wishlist</a>
<a href="#" class="font-rale font-size-14 text-white-50 pb-1">News Letter</a>
</div>
</div>
</div>
</div>
</footer>
<div class="copyright text-center bg-dark text-white py-2">
<p class="font-rale font-size-14">© Copyright 2020. Design By <a href="#" class="color-second">ARVIND KUMAWAT</a></p>
</div>
<!-- End #footer-->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<!--Owl-carousel javascript-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js" integrity="sha256-pTxD+DSzIwmwhOqTFN+DB+nHjO4iAsbgfyFq5K5bcE0=" crossorigin="anonymous"></script>
<!-- isotope plugin sdn-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.isotope/3.0.6/isotope.pkgd.min.js" integrity="sha256-CBrpuqrMhXwcLLUd5tvQ4euBHCdh7wGlDfNz8vbu/iI=" crossorigin="anonymous"></script>
<!--Custom Javascript-->
<script src="index.js"></script>
</body>
</html>