-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
760 lines (712 loc) · 38.4 KB
/
index.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
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
<!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">
<title>Home | Commercial Store - By DR Team</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/script.js"></script>
</head>
<body>
<!--Header-->
<div id="header" class="padding-default">
<div class="header-bar">
<!--- Header with search bar-->
<div class="header-bar__containter-info-bar">
<!-- Left -->
<div class="header-bar__info-part">
<div class="header-bar__nav-item">
<a href="index.html"><img alt="Logo" src="img/logo.svg" width="140px" height="55px" /></a>
</div>
<div class="header-bar__nav-item">
<a href="about-us.html">About us</a>
</div>
<div class="header-bar__nav-item">
<a href="about-us.html">Benefits</a>
</div>
<div class="header-bar__nav-item">
<a href="about-us.html">Blog</a>
</div>
</div>
<!-- center -->
<div class="header-bar__info-center">
<form action="search" method="post">
<div class="search-bar">
<input id="txtSearch" placeholder="Xiaomi Redmi Note 11, iPad Air, Mi Pad 6,..."
type="text">
<button class="btn-search">
<img alt="Button search" src="img/ico-search.svg" width="15px" height="15px"
style="filter: invert(1);" />
</button>
</div>
</form>
</div>
<!-- Right -->
<div class="header-bar__info-part">
<div class="ico-header-res header-bar__nav-item">
<a href="index.html"><img alt="Logo" src="img/logo.svg" width="140px" height="55px" /></a>
</div>
<div class="header-bar__nav-item">
<a href="help.html">Help</a>
</div>
<div class="header-bar__nav-item">
<a href="profile.html"><img class="mg-right-7px" alt="profile" src="img/ico-user.svg"
width="17px" height="17px" style="filter: invert(1);" /> Account</a>
</div>
<div class="header-bar__nav-item">
<a href="whitelist.html"><img class="mg-right-7px" alt="whitelist" src="img/ico-heart.svg"
width="17px" height="17px" style="filter: invert(1);" /> Whitelist</a>
</div>
<div class="header-bar__nav-item">
<a href="cart.html"><img class="mg-right-7px" alt="whitelist" src="img/ico-cart.svg" width="17px" height="17px"
style="filter: invert(1);" />
<div class="cart-number-badge" id="cart">
<p id="p-cart " style="font-size: 12px;">0</p>
</div>Cart
</a>
</div>
</div>
</div>
<!--- Header with button bar-->
<div class="header-bar__containter-nav-bar">
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html"><img class="mg-right-7px"
alt="whitelist" src="img/ico-menu.png" width="14px" height="14px"
style="filter: invert(1);" /> All our products</a>
</div>
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html"><img class="mg-right-7px"
alt="whitelist" src="img/ico-hpny.png" width="17px" height="17px"
style="filter: invert(1);" /> New Year Deals</a>
</div>
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html"><img class="mg-right-7px"
alt="whitelist" src="img/ico-fire.png" width="17px" height="17px" /> Hot deals</a>
</div>
<div class="header-bar__nav-item postion-relative">
<a class="font-weight-light font-size-15px" href="allproducts.html">Apple<img class="mg-left-5px"
alt="arrow" src="img/arrow-down.svg" width="10px" height="10px"
style="filter: invert(1);" /></a>
<div class="header-bar__nav-item-flow">
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html">iPod</a>
</div>
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html">iPad</a>
</div>
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html">iPhone</a>
</div>
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html">AirPod</a>
</div>
</div>
</div>
<div class="header-bar__nav-item postion-relative">
<a class="font-weight-light font-size-15px" href="allproducts.html">Laptops<img class="mg-left-5px"
alt="arrow" src="img/arrow-down.svg" width="10px" height="10px"
style="filter: invert(1);" /></a>
<div class="header-bar__nav-item-flow">
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html">HP</a>
</div>
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html">Acer</a>
</div>
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html">Macbook</a>
</div>
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html">Surface</a>
</div>
</div>
</div>
<div class="header-bar__nav-item postion-relative">
<a class="font-weight-light font-size-15px" href="allproducts.html">Desktop Computer<img
class="mg-left-5px" alt="arrow" src="img/arrow-down.svg" width="10px" height="10px"
style="filter: invert(1);" /></a>
<div class="header-bar__nav-item-flow">
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html">Dell</a>
</div>
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html">Acer</a>
</div>
</div>
</div>
<div class="header-bar__nav-item postion-relative">
<a class="font-weight-light font-size-15px" href="allproducts.html">Chromebooks<img
class="mg-left-5px" alt="arrow" src="img/arrow-down.svg" width="10px" height="10px"
style="filter: invert(1);" /></a>
<div class="header-bar__nav-item-flow">
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html">2023</a>
</div>
</div>
</div>
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html">Tablets</a>
</div>
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html">Monitors</a>
</div>
<div class="header-bar__nav-item">
<a class="font-weight-light font-size-15px" href="allproducts.html">Others</a>
</div>
</div>
</div>
</div>
<!--Body-->
<div id="body">
<!--ADS Review-->
<div class="card-review-ads">
<div class="card-flex-row">
<div class="card-ads-left">
<div class="btn btn-medium-size">DeadlineRunner</div>
<div class="card-review-tlt-ads">
<div class="card-review-tlt">
<div>Reviews 1912</div>
<div> * </div>
<div>Excellent</div>
</div>
<div class="review-bar-star">
<div class="review-star-blue"><img src="img/ico-star.svg" width="20px" height="20px"></div>
<div class="review-star-blue"><img src="img/ico-star.svg" width="20px" height="20px"></div>
<div class="review-star-blue"><img src="img/ico-star.svg" width="20px" height="20px"></div>
<div class="review-star-blue"><img src="img/ico-star.svg" width="20px" height="20px"></div>
<div class="review-star-blue"><img src="img/ico-star.svg" width="20px" height="20px"></div>
<div class="bold font-size">4.9</div>
</div>
</div>
</div>
<div class="card-ads-right">
<div class="btn btn-small-size-increase mg-right-25px"><img src="img/ico-shield-check.svg"
width="17px" height="17px">1 Year Warranty</div>
<div class="btn btn-small-size-increase mg-right-25px"><img src="img/ico-30dayback.svg" width="17px"
height="17px">30 Day Money-Back</div>
<div class="btn btn-small-size-increase"><img src="img/ico-shipping.svg" width="17px"
height="17px">Free Shipping</div>
</div>
</div>
</div>
<!--End ADS Review-->
<!-- Slide -->
<div class="slide">
<img src="img/bg-iads.svg" width="100%">
<div class="btn-slide-left postion-absolute"><a href="#"><img src="img/arrow-left.svg" width="45px"
height="45px"></a></div>
<div class="btn-slide-right postion-absolute"><a href="#"><img src="img/arrow-right.svg" width="45px"
height="45px"></a></div>
<div class="postion-absolute slide-position">
<div class="text-slide">Buy Refubished...</div>
<div class="text-slide">Save Money</div>
<a href="our-benefit.html">
<div class="btn btn-medium-size btn-black bold hover-noopacity">Our Benefits</div>
</a>
</div>
</div>
<!-- End Slide -->
<!-- Brand bar -->
<div class="brand-bar">
<a href="#" class="no-a-decor">
<div class="brand-logo">
<img src="img/logo-apple-white.svg">
<div class="font-color-gray">Apple</div>
</div>
</a>
<a href="#" class="no-a-decor">
<div class="brand-logo">
<img src="img/logo-hp-white.svg">
<div class="font-color-gray">Hewlett-Packard</div>
</div>
</a>
<a href="#" class="no-a-decor">
<div class="brand-logo">
<img src="img/logo-dell-white.svg">
<div class="font-color-gray">Dell</div>
</div>
</a>
<a href="#" class="no-a-decor">
<div class="brand-logo">
<img src="img/logo-lenovo-white.svg">
<div class="font-color-gray">Lenovo</div>
</div>
</a>
<a href="#" class="no-a-decor">
<div class="brand-logo">
<img src="img/logo-acer-white.svg">
<div class="font-color-gray">Acer</div>
</div>
</a>
<a href="#" class="no-a-decor">
<div class="brand-logo">
<img src="img/chat-orange.svg">
<div class="font-color-gray">Need a help?</div>
</div>
</a>
</div>
<!-- End Brand bar -->
<!-- Our best-sellers -->
<div class="best-sellers-bar">
<div class="title-head-bar">
<h1>Our bestsellers</h1>
<h2>The most popular products that will suit your needs</h2>
</div>
<div id="loadBestSeller" class="best-sellers-bar-product">
</div>
</div>
<!-- END Our Best-sellers-->
<!-- about-us -->
<div class="about-us">
<div class="title-head-bar">
<h1>About DR Store</h1>
<h2>The leading Microsoft Authorized Refurbisher in UK</h2>
</div>
<div class="about-us__waper">
<div class="about-us__waper--item-left">
<img src="img/logo.svg" style="filter: invert();" alt="">
<h2>We're DeadlineRunner (a.k.a DR), who re- <br> work ReboxIT's template on Behance. DR <br> used
this template for Education. <br>
Thanks for your understanding!</h2>
<button class="about-us__waper--item-left__btn">
More about us
</button>
</div>
<div class="about-us-center-all">
<div class="about-us__waper--item-center">
<div class="about-us__waper--item-center__main__divide">
<div class="about-us__waper--item-center__main">
<img src="img/ico_badge.png" alt="">
<ul class=" body-ul-item">
<li class="body-li-item body-li-item__header">Top Quality</li>
<li class="body-li-item font-size-15px"> Refurbished in the same <br> way that is a new
one
is</li>
</ul>
</div>
<div class="about-us__waper--item-center__main">
<img src="img/ico_badge.png" alt="">
<ul class="body-ul-item">
<li class=" body-li-item body-li-item__header">Guarantee</li>
<li class=" body-li-item font-size-15px"> We will ve available to you <br> 24 hours a
day,
seven </li>
</ul>
</div>
</div>
<div class="about-us__waper--item-center__main__divide">
<div class="about-us__waper--item-center__main">
<img src="img/ico_badge.png" alt="">
<ul class="body-ul-item">
<li class=" body-li-item body-li-item__header">Best-price</li>
<li class=" body-li-item font-size-15px"> We provided the best <br> price with the best
<br>
quality because we care <br> about your electonics</li>
</ul>
</div>
<div class="about-us__waper--item-center__main">
<img src="img/ico_badge.png" alt="">
<ul class="body-ul-item">
<li class="body-li-item body-li-item__header">Everywhere</li>
<li class="body-li-item font-size-15px"> Thousands of customers <br> have placed their
trust in US,<br> and we sell all over the <br> world, with free shipping <br> within
the
UK</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- endabout-us -->
<div class="mg-top-20px">
<p></p>
</div>
<!-- body-categories -->
<div class="body-categories">
<div class="title-head-bar">
<h1>Categories</h1>
<h2>Easy to navigate, easy to filter, easy to buy</h2>
</div>
<div class="body-categories__waper">
<div class="body-categories__waper--left">
<ul class=" body-ul-item body-ul-item-resp">
<li class=" body-li-item body-card-info-headding-fix-for-dung">Apple</li>
<li class=" body-li-item font-size-s"> Where refurbishment is done <br> right! We
professionally refurbish.</li>
</ul>
<button class="categories-btn-learn-more-fix-left-center-for-dung"> Learn more</button>
<img src="img/image 7.png" alt="">
</div>
<div class="body-categories__waper--center">
<div class="body-categories__waper--nav">
<div class="body-categories__waper--nav__left">
<ul class="body-ul-item body-ul-item-resp">
<li class=" body-li-item body-card-info-headding-fix-for-dung">Xiaomi</li>
<li class=" body-li-item font-size-s"> Where refurbishment is done <br> right! We
professionally refurbish.</li>
</ul>
<button class="categories-btn-learn-more">Learn more</button>
</div>
<img src="img/img_ultrabook.png" alt="">
</div>
<div class="body-categories__waper--nav">
<div class="body-categories__waper--nav__left">
<ul class=" body-ul-item body-ul-item-resp">
<li class=" body-li-item body-card-info-headding-fix-for-dung">Chromebooks</li>
<li class=" body-li-item font-size-s"> Where refurbishment is done <br> right! We
professionally refurbish.</li>
</ul>
<button class="categories-btn-learn-more">Learn more</button>
</div>
<img class="test" src="img/img_ultrabook (1).png" alt="">
</div>
</div>
<div class="body-categories__waper--right">
<div class="body-categories__waper--nav">
<div class="body-categories__waper--nav__left">
<ul class=" body-ul-item body-ul-item-resp">
<li class=" body-li-item body-card-info-headding-fix-for-dung">Tablet</li>
<li class=" body-li-item font-size-s"> Where refurbishment is done <br> right! We
professionally refurbish.</li>
</ul>
<button class="categories-btn-learn-more">Learn more</button>
</div>
<img class="test" src="img/img_ultrabook (2).png" alt="">
</div>
<div class="body-categories__waper--nav">
<div class="body-categories__waper--nav__left">
<ul class=" body-ul-item body-ul-item-resp">
<li class=" body-li-item body-card-info-headding-fix-for-dung">Desktop</li>
<li class=" body-li-item font-size-s"> Where refurbishment is done <br> right! We
professionally refurbish.</li>
</ul>
<button class="categories-btn-learn-more">Learn more</button>
</div>
<img class="test" src="img/img_ultrabook (3).png" alt="">
</div>
</div>
</div>
</div>
<!-- End about us -->
<div class="mg-top-20px">
<p></p>
</div>
<!-- Recommended -->
<div class="best-sellers-bar">
<div class="title-head-bar">
<h1>Recommended for you</h1>
<h2>Your personalized product recommendations</h2>
</div>
<div id="recommendLoad" class="best-sellers-bar-product">
</div>
<div class="center-flex-row">
<a href="allproducts.html" class="no-a-decor"><button class="btn btn-decor-ograngebg btn-padding-left-right-15px">All products</button></a>
</div>
</div>
<!-- End Recommended -->
<!-- our_preloved-FAQ -->
<div class="body-our_preloved">
<div class="title-head-bar">
<h1>Our preloved, are loved by</h1>
<h2>They love us</h2>
</div>
<div class="body-our_preloved--nav">
<div class="body-our_preloved--subnav">
<h1>Kennex666</h1>
<h2>“Great product, I’ll come back soon when my laptop break.”</h2>
</div>
<div class="body-our_preloved--subnav">
<h1>dib</h1>
<h2>“Great product, I’ll come back soon when my laptop break.”</h2>
</div>
<div class="body-our_preloved--subnav">
<h1>dib</h1>
<h2>“Great product, I’ll come back soon when my laptop break.”</h2>
</div>
</div>
<div class="bar-arrow-row">
<div class="bar-arrow">
<img src="img/arrow-left.svg" alt="">
<img src="img/arrow-right.svg" alt="">
</div>
</div>
</div>
<!-- FAQ -->
<div class="body-FAQ">
<div class="title-head-bar">
<h1>FAQ</h1>
<h2>Frequently asked questions</h2>
</div>
<div class="body-FAQ--top">
<button class="btn-FAQ__selected hover-op06">General</button>
<button class="btn-FAQ__non-select hover-op06"> About company</button>
<button class="btn-FAQ__non-select hover-op06">Quality standards</button>
<button class="btn-FAQ__non-select hover-op06">Shipping and Payment</button>
<button class="btn-FAQ__non-select hover-op06">Guarantee</button>
</div>
<div class="body-FAQ--bottom__main">
<div class="body-FAQ--bottom__main-left">
<div class="body-FAQ--bottom__nav">
<h1>What is the Store IT?</h1>
<img src="img/angle-small-down.svg" alt="">
</div>
<div class="body-FAQ--bottom__nav">
<h1>Why you should buy from Store IT?</h1>
<img src="img/angle-small-down.svg" alt="">
</div>
</div>
<div class="body-FAQ--bottom__main-right">
<div class="body-FAQ--bottom__nav">
<h1>Are we safe when purchasing?</h1>
<img src="img/angle-small-down.svg" alt="">
</div>
<div class="body-FAQ--bottom__nav">
<h1>Is it free shipping?</h1>
<img src="img/angle-small-down.svg" alt="">
</div>
</div>
</div>
</div>
<!-- END FAQ -->
<div class="mg-top-20px">
<p></p>
</div>
<!-- Blogger -->
<div class="best-sellers-bar">
<div class="title-head-bar">
<h1>Blog</h1>
<h2>Discover all the lastest about refurbished electronics</h2>
</div>
<div class="blog-bar">
<div class="blog-single">
<img src="img/blog/img_blog1.png" alt="blog image">
<a class="no-a-decor" href="blog.html">Top 10 Providers That Store Test Trust</a>
<div class="blog-author">
<button class="btn btn-decor-graybg bold font-size-s hover-op06">DR Team</button>
<div class="font-size-s font-color-gray">19.12.2022</div>
</div>
<button
class="btn btn-decor-grayborder bold font-size-s btn-padding-left-right-15px-maxsize hover-op06">Learn
more</button>
</div>
<div class="blog-single">
<img src="img/blog/img_blog2.png" alt="blog image">
<a class="no-a-decor" href="blog.html">We’re working and make a new phone: iPhone 17!</a>
<div class="blog-author">
<button class="btn btn-decor-graybg bold font-size-s hover-op06">Apple Inc</button>
<div class="font-size-s font-color-gray">19.12.2022</div>
</div>
<button
class="btn btn-decor-grayborder bold font-size-s btn-padding-left-right-15px-maxsize hover-op06">Learn
more</button>
</div>
<div class="blog-single">
<img src="img/blog/img_blog3.png" alt="blog image">
<a class="no-a-decor" href="blog.html">You’ll believe that: Apple Store are going to open in
Vietnam!!</a>
<div class="blog-author">
<button class="btn btn-decor-graybg bold font-size-s hover-op06">DR Team</button>
<div class="font-size-s font-color-gray">19.12.2022</div>
</div>
<button
class="btn btn-decor-grayborder bold font-size-s btn-padding-left-right-15px-maxsize hover-op06">Learn
more</button>
</div>
</div>
</div>
<!--End Blogger -->
<!-- search-query -->
<div class="all_product">
<div class="title-head-bar">
<h1>Popular queries</h1>
<h2>Search so popular - you can’t sit with them</h2>
</div>
<div class="all_product--popular-button">
<a href="product.html" class="no-a-decor"><button class="btn btn-decor-grayborder btn-small-size">Apple Macbook
Pro</button></a>
<a href="product.html" class="no-a-decor"><button class="btn btn-decor-grayborder btn-small-size">Mi Pad
6</button></a>
<a href="product.html" class="no-a-decor"><button class="btn btn-decor-grayborder btn-small-size">iPhone
14</button></a>
</div>
</div>
<!-- end search-query -->
<!-- Phần list product-->
<div class="product-title-list">
<div class="title-head-bar">
<h1>All our products</h1>
<h2>Huge selection of products, in stock, and ready to go</h2>
</div>
<div class="all_product--list">
<ul class="all_product--list__nav">
<li class="all_product--list__subnav">Brands</li>
<li class="all_product--list__subnav"><a href="#">Apple</a></li>
<li class="all_product--list__subnav"><a href="#">Dell</a></li>
<li class="all_product--list__subnav"><a href="#">Hp</a></li>
<li class="all_product--list__subnav"><a href="#">Lenovo</a></li>
<li class="all_product--list__subnav"><a href="#">Toshiba</a></li>
</ul>
<ul class="all_product--list__nav">
<li class="all_product--list__subnav">Apple</li>
<li class="all_product--list__subnav"><a href="#">Macbook Air</a></li>
<li class="all_product--list__subnav"><a href="#">Mackbook Pro</a></li>
<li class="all_product--list__subnav"><a href="#">iPad</a></li>
</ul>
<ul class="all_product--list__nav">
<li class="all_product--list__subnav">Laptop</li>
<li class="all_product--list__subnav"><a href="#">Apple Laptops</a></li>
<li class="all_product--list__subnav"><a href="#">Dell Laptops</a></li>
<li class="all_product--list__subnav"><a href="#">Hp Laptops</a></li>
<li class="all_product--list__subnav"><a href="#">Lenovo Laptops</a></li>
<li class="all_product--list__subnav"><a href="#">Toshiba Laptops</a></li>
</ul>
<ul class="all_product--list__nav">
<li class="all_product--list__subnav">Xiaomi</li>
<li class="all_product--list__subnav"><a href="#">Xiaomi Mi Mix</a></li>
<li class="all_product--list__subnav"><a href="#">Xiaomi Redmi</a></li>
<li class="all_product--list__subnav"><a href="#">Xiaomi Mi Pad</a></li>
<li class="all_product--list__subnav"><a href="#">Xiaomi Mi Pen</a></li>
<li class="all_product--list__subnav"><a href="#">Xiaomi Mi Band</a></li>
</ul>
<ul class="all_product--list__nav">
<li class="all_product--list__subnav">Deskop Computers</li>
<li class="all_product--list__subnav"><a href="#">Dell Computers</a></li>
<li class="all_product--list__subnav"><a href="#">Hp Computers</a></li>
</ul>
</div>
</div>
<!-- End list product-->
<!-- rebox -->
<div class="rebox">
<br>
<h1>What is the REBOX IT?</h1>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Velit dolores, quos delectus a non laborum quidem doloribus
soluta officiis fugiat accusamus fuga culpa sint,
qui doloremque veritatis et molestias animi.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui quasi asperiores consequatur accusantium ea nam
eveniet!</p>
<h2>It is the better to buy it refurbished or used?</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Reprehenderit eligendi quaerat molestiae harum tempore,
ipsum consequuntur <br> ducimus praesentium eos voluptates
voluptas saepe, esse temporibus dolore corrupti vel
deserunt nulla ad.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Possimus sint labore, odit unde voluptates laborum sunt
nam ab consequatur <br> cum optio, eligendi iste necessitatibus maxime! Dolorum obcaecati accusantium eligendi
vitae?</p>
<br>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Velit dolores, quos delectus a non laborum quidem doloribus
soluta officiis fugiat accusamus fuga culpa sint,
qui doloremque veritatis et molestias animi.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui quasi asperiores consequatur accusantium ea nam
eveniet!</p>
<h2>It is the better to buy it refurbished or used?</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Reprehenderit eligendi quaerat molestiae harum tempore,
ipsum consequuntur <br> ducimus praesentium eos voluptates
voluptas saepe, esse temporibus dolore corrupti vel
deserunt nulla ad.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Possimus sint labore, odit unde voluptates laborum sunt
nam
ab consequatur <br> cum optio, eligendi iste necessitatibus maxime! Dolorum obcaecati accusantium eligendi
vitae?
</p>
<br>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Velit dolores, quos delectus a non laborum quidem doloribus
soluta officiis fugiat accusamus fuga culpa sint,
qui doloremque veritatis et molestias animi.
Lorem ipsum dolor sit amet consectetur adipisicing elit. Qui quasi asperiores consequatur accusantium ea nam
eveniet!</p>
<h2>It is the better to buy it refurbished or used?</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Reprehenderit eligendi quaerat molestiae harum tempore,
ipsum consequuntur <br> ducimus praesentium eos voluptates
voluptas saepe, esse temporibus dolore corrupti vel
deserunt nulla ad.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Possimus sint labore, odit unde voluptates laborum sunt
nam
ab consequatur <br> cum optio, eligendi iste necessitatibus maxime! Dolorum obcaecati accusantium eligendi
vitae?
</p>
<br>
</div>
<!-- end rebox -->
</div>
<!--Footer-->
<div id="footer">
<!-- footer list -->
<div class="footer-list">
<div class="foter-list__storetest">
</div>
<ul class="footer-list__nav">
<li class="footer-list__subnav">
<a href="index.html"><img alt="Logo" src="img/logo.svg" width="160px"/></a>
</li>
<li class="footer-list__subnav" style="width: 230px; padding-left: 5px;">We're DeadlineRunner (a.k.a DR), who re-work
ReboxIT's template on Behance. DR used this template for Education.<br>Thanks for your understanding!</li>
</ul>
<ul class="footer-list__nav">
<li class="footer-list__subnav">Account</li>
<li class="footer-list__subnav"><a href="#">Account</a></li>
<li class="footer-list__subnav"><a href="#">My wish list</a></li>
<li class="footer-list__subnav"><a href="#">Order History</a></li>
<li class="footer-list__subnav"><a href="#">Address bock</a></li>
<li class="footer-list__subnav"><a href="#">Privacy Pollcy</a></li>
</ul>
<ul class="footer-list__nav">
<li class="footer-list__subnav">Navigation</li>
<li class="footer-list__subnav"><a href="#">Catalog</a></li>
<li class="footer-list__subnav"><a href="#">About us</a></li>
<li class="footer-list__subnav"><a href="#">Reviwes</a></li>
<li class="footer-list__subnav"><a href="#">Blog</a></li>
<li class="footer-list__subnav"><a href="#">Stemap</a></li>
</ul>
<ul class="footer-list__nav">
<li class="footer-list__subnav">Help and order</li>
<li class="footer-list__subnav"><a href="#">Delivery information</a></li>
<li class="footer-list__subnav"><a href="#">FAQ</a></li>
<li class="footer-list__subnav"><a href="#">Help center</a></li>
<li class="footer-list__subnav"><a href="#">Return & Refund</a></li>
<li class="footer-list__subnav"><a href="#">Terms & Conditions</a></li>
</ul>
<ul class="footer-list__nav">
<li class="footer-list__subnav">Contact us</li>
<li class="footer-list__subnav"><a href="#">support@1boxstudios.com</a></li>
<li class="footer-list__subnav"><a href="#">+1-929-222-6847</a></li>
</ul>
</div>
<!-- footer brand -->
<div class="footer-brand">
<div class="footer-single-brand footer-nav-item">
<img src="img/logo-apple-black.svg" alt="">
</div>
<div class="footer-single-brand footer-nav-item">
<img src="img/bnt_hp.png" alt="">
</div>
<div class="footer-single-brand footer-nav-item">
<img src="img/btn_dell.png" alt="">
</div>
<div class="footer-single-brand footer-nav-item">
<img src="img/btn_lenovo.png" alt="">
</div>
<div class="footer-single-brand footer-nav-item">
<img src="img/btn_acer.png" alt="">
</div>
<div class="footer-single-brand footer-nav-item">
<img src="img/chat-orange.svg" alt="">
</div>
</div>
<!-- footer introduce -->
<div class="footer-introduce">
<p>Designed by Concept Orange - Re-work by <a href="https://github.com/kennex666/CommercialStore"
class="font-color-white no-a-decor">DeadlineRunner</a></p>
</div>
</div>
</body>
</html>