-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcart.html
546 lines (528 loc) · 31.9 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
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Cart | Deco Store</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico in the root directory -->
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- All css files are included here. -->
<!-- Bootstrap fremwork main css -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Owl Carousel min css -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<!-- This core.css file contents all plugings css file. -->
<link rel="stylesheet" href="css/core.css">
<!-- Theme shortcodes/elements style -->
<link rel="stylesheet" href="css/shortcode/shortcodes.css">
<!-- Theme main style -->
<link rel="stylesheet" href="style.css">
<!-- Responsive css -->
<link rel="stylesheet" href="css/responsive.css">
<!-- User style -->
<link rel="stylesheet" href="css/custom.css">
<!-- Modernizr JS -->
<script src="js/vendor/modernizr-3.5.0.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Body main wrapper start -->
<div class="wrapper">
<!-- Start Header Style -->
<header id="htc__header" class="htc__header__area header--one">
<!-- Start Mainmenu Area -->
<div id="sticky-header-with-topbar" class="mainmenu__wrap sticky__header">
<div class="container">
<div class="row">
<div class="menumenu__container clearfix">
<div class="col-lg-2 col-md-2 col-sm-3 col-xs-5">
<div class="logo">
<a href="index.html"><img src="images/logo/4.png" alt="logo images"></a>
</div>
</div>
<div class="col-md-7 col-lg-8 col-sm-5 col-xs-3">
<nav class="main__menu__nav hidden-xs hidden-sm">
<ul class="main__menu">
<li><a href="index.html">Home</a></li>
<li class="drop"><a href="#">Shop</a>
<ul class="dropdown mega_dropdown">
<!-- Start Single Mega MEnu -->
<li><a class="mega__title" href="product-grid.html">Shop Pages</a>
<ul class="mega__item">
<li><a href="product-grid.html">Product Grid</a></li>
<li><a href="product-list.html">Product List</a></li>
<li><a href="cart.html">cart</a></li>
<li><a href="checkout.html">checkout</a></li>
<li><a href="wishlist.html">wishlist</a></li>
</ul>
</li>
<!-- End Single Mega MEnu -->
<!-- Start Single Mega MEnu -->
<li><a class="mega__title" href="product-grid.html">Variable Product</a>
<ul class="mega__item">
<li><a href="#">Category</a></li>
<li><a href="#">My Account</a></li>
<li><a href="wishlist.html">Wishlist</a></li>
<li><a href="cart.html">Shopping Cart</a></li>
<li><a href="checkout.html">Checkout</a></li>
</ul>
</li>
<!-- End Single Mega MEnu -->
<!-- Start Single Mega MEnu -->
<li><a class="mega__title" href="product-grid.html">Product Types</a>
<ul class="mega__item">
<li><a href="#">Simple Product</a></li>
<li><a href="#">Variable Product</a></li>
<li><a href="#">Grouped Product</a></li>
<li><a href="#">Downloadable Product</a></li>
<li><a href="#">Simple Product</a></li>
</ul>
</li>
<!-- End Single Mega MEnu -->
</ul>
</li>
<li class="drop"><a href="blog.html">blog</a>
<ul class="dropdown">
<li><a href="blog.html">Blog Grid</a></li>
<li><a href="blog-details.html">Blog Details</a></li>
</ul>
</li>
<li><a href="contact.html">contact</a></li>
</ul>
</nav>
<div class="mobile-menu clearfix visible-xs visible-sm">
<nav id="mobile_dropdown">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">blog</a></li>
<li><a href="#">pages</a>
<ul>
<li><a href="blog.html">Blog</a></li>
<li><a href="blog-details.html">Blog Details</a></li>
<li><a href="cart.html">Cart page</a></li>
<li><a href="checkout.html">checkout</a></li>
<li><a href="contact.html">contact</a></li>
<li><a href="product-grid.html">product grid</a></li>
<li><a href="product-list.html">product list</a></li>
<li><a href="product-details.html">product details</a></li>
<li><a href="wishlist.html">wishlist</a></li>
</ul>
</li>
<li><a href="contact.html">contact</a></li>
</ul>
</nav>
</div>
</div>
<div class="col-md-3 col-lg-2 col-sm-4 col-xs-4">
<div class="header__right">
<div class="header__search search search__open">
<a href="#"><i class="icon-magnifier icons"></i></a>
</div>
<div class="header__account">
<a href="#"><i class="icon-user icons"></i></a>
</div>
<div class="htc__shopping__cart">
<a class="cart__menu" href="#"><i class="icon-handbag icons"></i></a>
<a href="#"><span class="htc__qua">2</span></a>
</div>
</div>
</div>
</div>
</div>
<div class="mobile-menu-area"></div>
</div>
</div>
<!-- End Mainmenu Area -->
</header>
<!-- End Header Area -->
<div class="body__overlay"></div>
<!-- Start Offset Wrapper -->
<div class="offset__wrapper">
<!-- Start Search Popap -->
<div class="search__area">
<div class="container" >
<div class="row" >
<div class="col-md-12" >
<div class="search__inner">
<form action="#" method="get">
<input placeholder="Search here... " type="text">
<button type="submit"></button>
</form>
<div class="search__close__btn">
<span class="search__close__btn_icon"><i class="zmdi zmdi-close"></i></span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Search Popap -->
<!-- Start Cart Panel -->
<div class="shopping__cart">
<div class="shopping__cart__inner">
<div class="offsetmenu__close__btn">
<a href="#"><i class="zmdi zmdi-close"></i></a>
</div>
<div class="shp__cart__wrap">
<div class="shp__single__product">
<div class="shp__pro__thumb">
<a href="#">
<img src="images/product-2/sm-smg/1.jpg" alt="product images">
</a>
</div>
<div class="shp__pro__details">
<h2><a href="product-details.html">BO&Play Wireless Speaker</a></h2>
<span class="quantity">QTY: 1</span>
<span class="shp__price">RM105.00</span>
</div>
<div class="remove__btn">
<a href="#" title="Remove this item"><i class="zmdi zmdi-close"></i></a>
</div>
</div>
<div class="shp__single__product">
<div class="shp__pro__thumb">
<a href="#">
<img src="images/product-2/sm-smg/2.jpg" alt="product images">
</a>
</div>
<div class="shp__pro__details">
<h2><a href="product-details.html">Brone Candle</a></h2>
<span class="quantity">QTY: 1</span>
<span class="shp__price">RM25.00</span>
</div>
<div class="remove__btn">
<a href="#" title="Remove this item"><i class="zmdi zmdi-close"></i></a>
</div>
</div>
</div>
<ul class="shoping__total">
<li class="subtotal">Subtotal:</li>
<li class="total__price">RM130.00</li>
</ul>
<ul class="shopping__btn">
<li><a href="cart.html">View Cart</a></li>
<li class="shp__checkout"><a href="checkout.html">Checkout</a></li>
</ul>
</div>
</div>
<!-- End Cart Panel -->
</div>
<!-- End Offset Wrapper -->
<!-- Start Bradcaump area -->
<div class="ht__bradcaump__area" style="background: rgba(0, 0, 0, 0) url(images/bg/4.jpg) no-repeat scroll center center / cover ;">
<div class="ht__bradcaump__wrap">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="bradcaump__inner">
<nav class="bradcaump-inner">
<a class="breadcrumb-item" href="index.html">Home</a>
<span class="brd-separetor"><i class="zmdi zmdi-chevron-right"></i></span>
<span class="breadcrumb-item active">shopping cart</span>
</nav>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Bradcaump area -->
<!-- cart-main-area start -->
<div class="cart-main-area ptb--100 bg__white">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<form action="#">
<div class="table-content table-responsive">
<table>
<thead>
<tr>
<th class="product-thumbnail">products</th>
<th class="product-name">name of products</th>
<th class="product-price">Price</th>
<th class="product-quantity">Quantity</th>
<th class="product-subtotal">Total</th>
<th class="product-remove">Remove</th>
</tr>
</thead>
<tbody>
<tr>
<td class="product-thumbnail"><a href="#"><img src="images/product-2/cart-img/1.jpg" alt="product img" /></a></td>
<td class="product-name"><a href="#">New Dress For Sunday</a>
<ul class="pro__prize">
<li class="old__prize">RM82.5</li>
<li>RM75.2</li>
</ul>
</td>
<td class="product-price"><span class="amount">RM165.00</span></td>
<td class="product-quantity"><input type="number" value="1" /></td>
<td class="product-subtotal">RM165.00</td>
<td class="product-remove"><a href="#"><i class="icon-trash icons"></i></a></td>
</tr>
<tr>
<td class="product-thumbnail"><a href="#"><img src="images/product-2/cart-img/2.jpg" alt="product img" /></a></td>
<td class="product-name"><a href="#">New Dress For Sunday</a>
<ul class="pro__prize">
<li class="old__prize">RM82.5</li>
<li>RM75.2</li>
</ul>
</td>
<td class="product-price"><span class="amount">RM50.00</span></td>
<td class="product-quantity"><input type="number" value="1" /></td>
<td class="product-subtotal">RM50.00</td>
<td class="product-remove"><a href="#"><i class="icon-trash icons"></i></a></td>
</tr>
<tr>
<td class="product-thumbnail"><a href="#"><img src="images/product-2/cart-img/3.jpg" alt="product img" /></a></td>
<td class="product-name"><a href="#">New Dress For Sunday</a>
<ul class="pro__prize">
<li class="old__prize">RM82.5</li>
<li>RM75.2</li>
</ul>
</td>
<td class="product-price"><span class="amount">RM50.00</span></td>
<td class="product-quantity"><input type="number" value="1" /></td>
<td class="product-subtotal">RM50.00</td>
<td class="product-remove"><a href="#"><i class="icon-trash icons"></i></a></td>
</tr>
<tr>
<td class="product-thumbnail"><a href="#"><img src="images/product-2/cart-img/4.jpg" alt="product img" /></a></td>
<td class="product-name"><a href="#">New Dress For Sunday</a>
<ul class="pro__prize">
<li class="old__prize">RM82.5</li>
<li>RM75.2</li>
</ul>
</td>
<td class="product-price"><span class="amount">RM50.00</span></td>
<td class="product-quantity"><input type="number" value="1" /></td>
<td class="product-subtotal">RM50.00</td>
<td class="product-remove"><a href="#"><i class="icon-trash icons"></i></a></td>
</tr>
</tbody>
</table>
</div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="buttons-cart--inner">
<div class="buttons-cart">
<a href="#">Continue Shopping</a>
</div>
<div class="buttons-cart checkout--btn">
<a href="#">update</a>
<a href="#">checkout</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-12 col-xs-12">
<div class="ht__coupon__code">
<span>enter your discount code</span>
<div class="coupon__box">
<input type="text" placeholder="">
<div class="ht__cp__btn">
<a href="#">enter</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12 col-xs-12 smt-40 xmt-40">
<div class="htc__cart__total">
<h6>cart total</h6>
<div class="cart__desk__list">
<ul class="cart__desc">
<li>cart total</li>
<li>tax</li>
<li>shipping</li>
</ul>
<ul class="cart__price">
<li>RM909.00</li>
<li>RM9.00</li>
<li>0</li>
</ul>
</div>
<div class="cart__total">
<span>order total</span>
<span>RM918.00</span>
</div>
<ul class="payment__btn">
<li class="active"><a href="#">payment</a></li>
<li><a href="#">continue shopping</a></li>
</ul>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- cart-main-area end -->
<!-- Start Brand Area -->
<div class="htc__brand__area bg__cat--4">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="ht__brand__inner">
<ul class="brand__list owl-carousel clearfix">
<li><a href="#"><img src="images/brand/1.png" alt="brand images"></a></li>
<li><a href="#"><img src="images/brand/2.png" alt="brand images"></a></li>
<li><a href="#"><img src="images/brand/3.png" alt="brand images"></a></li>
<li><a href="#"><img src="images/brand/4.png" alt="brand images"></a></li>
<li><a href="#"><img src="images/brand/5.png" alt="brand images"></a></li>
<li><a href="#"><img src="images/brand/5.png" alt="brand images"></a></li>
<li><a href="#"><img src="images/brand/1.png" alt="brand images"></a></li>
<li><a href="#"><img src="images/brand/2.png" alt="brand images"></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- End Brand Area -->
<!-- Start Banner Area -->
<div class="htc__banner__area">
<ul class="banner__list owl-carousel owl-theme clearfix">
<li><a href="product-details.html"><img src="images/banner/bn-3/1.jpg" alt="banner images"></a></li>
<li><a href="product-details.html"><img src="images/banner/bn-3/2.jpg" alt="banner images"></a></li>
<li><a href="product-details.html"><img src="images/banner/bn-3/3.jpg" alt="banner images"></a></li>
<li><a href="product-details.html"><img src="images/banner/bn-3/4.jpg" alt="banner images"></a></li>
<li><a href="product-details.html"><img src="images/banner/bn-3/5.jpg" alt="banner images"></a></li>
<li><a href="product-details.html"><img src="images/banner/bn-3/6.jpg" alt="banner images"></a></li>
<li><a href="product-details.html"><img src="images/banner/bn-3/1.jpg" alt="banner images"></a></li>
<li><a href="product-details.html"><img src="images/banner/bn-3/2.jpg" alt="banner images"></a></li>
</ul>
</div>
<!-- End Banner Area -->
<!-- End Banner Area -->
<!-- Start Footer Area -->
<footer id="htc__footer">
<!-- Start Footer Widget -->
<div class="footer__container bg__cat--1">
<div class="container">
<div class="row">
<!-- Start Single Footer Widget -->
<div class="col-md-3 col-sm-6 col-xs-12">
<div class="footer">
<h2 class="title__line--2">ABOUT US</h2>
<div class="ft__details">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim</p>
<div class="ft__social__link">
<ul class="social__link">
<li><a href="#"><i class="icon-social-twitter icons"></i></a></li>
<li><a href="#"><i class="icon-social-instagram icons"></i></a></li>
<li><a href="#"><i class="icon-social-facebook icons"></i></a></li>
<li><a href="#"><i class="icon-social-google icons"></i></a></li>
<li><a href="#"><i class="icon-social-linkedin icons"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- End Single Footer Widget -->
<!-- Start Single Footer Widget -->
<div class="col-md-2 col-sm-6 col-xs-12 xmt-40">
<div class="footer">
<h2 class="title__line--2">information</h2>
<div class="ft__inner">
<ul class="ft__list">
<li><a href="#">About us</a></li>
<li><a href="#">Delivery Information</a></li>
<li><a href="#">Privacy & Policy</a></li>
<li><a href="#">Terms & Condition</a></li>
<li><a href="#">Manufactures</a></li>
</ul>
</div>
</div>
</div>
<!-- End Single Footer Widget -->
<!-- Start Single Footer Widget -->
<div class="col-md-2 col-sm-6 col-xs-12 xmt-40 smt-40">
<div class="footer">
<h2 class="title__line--2">my account</h2>
<div class="ft__inner">
<ul class="ft__list">
<li><a href="#">My Account</a></li>
<li><a href="cart.html">My Cart</a></li>
<li><a href="#">Login</a></li>
<li><a href="wishlist.html">Wishlist</a></li>
<li><a href="checkout.html">Checkout</a></li>
</ul>
</div>
</div>
</div>
<!-- End Single Footer Widget -->
<!-- Start Single Footer Widget -->
<div class="col-md-2 col-sm-6 col-xs-12 xmt-40 smt-40">
<div class="footer">
<h2 class="title__line--2">Our service</h2>
<div class="ft__inner">
<ul class="ft__list">
<li><a href="#">My Account</a></li>
<li><a href="cart.html">My Cart</a></li>
<li><a href="#">Login</a></li>
<li><a href="wishlist.html">Wishlist</a></li>
<li><a href="checkout.html">Checkout</a></li>
</ul>
</div>
</div>
</div>
<!-- End Single Footer Widget -->
<!-- Start Single Footer Widget -->
<div class="col-md-3 col-sm-6 col-xs-12 xmt-40 smt-40">
<div class="footer">
<h2 class="title__line--2">NEWSLETTER </h2>
<div class="ft__inner">
<div class="news__input">
<input type="text" placeholder="Your Mail*">
<div class="send__btn">
<a class="fr__btn" href="#">Send Mail</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Single Footer Widget -->
</div>
</div>
</div>
<!-- End Footer Widget -->
<!-- Start Copyright Area -->
<div class="htc__copyright bg__cat--5">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="copyright__inner">
<p>Copyright© <a href="#">Deco Store</a> 2018. All right reserved.</p>
<a href="#"><img src="images/others/shape/paypol.png" alt="payment images"></a>
</div>
</div>
</div>
</div>
</div>
<!-- End Copyright Area -->
</footer>
<!-- End Footer Style -->
</div>
<!-- Body main wrapper end -->
<!-- Placed js at the end of the document so the pages load faster -->
<!-- jquery latest version -->
<script src="js/vendor/jquery-3.2.1.min.js"></script>
<!-- Bootstrap framework js -->
<script src="js/bootstrap.min.js"></script>
<!-- All js plugins included in this file. -->
<script src="js/plugins.js"></script>
<script src="js/slick.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<!-- Waypoints.min.js. -->
<script src="js/waypoints.min.js"></script>
<!-- Main js file that contents all jQuery plugins activation. -->
<script src="js/main.js"></script>
</body>
</html>