-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
918 lines (871 loc) · 34.1 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
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
<!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 :: Mistrium Furniture</title>
<!-- favicon -->
<link rel="icon" href="images/Logo-small.png" />
<!-- bootstrap stylesheet -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<!-- bootstrap icons -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css"
/>
<!-- google font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins&family=Unbounded&display=swap"
rel="stylesheet"
/>
<!-- custom css -->
<link rel="stylesheet" href="style.css" />
<!-- animate css -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<!-- animation on scroll library -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<!-- toastify css -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css">
</head>
<body class="py-5">
<header>
<!-- navigation bar start -->
<nav
class="fixed-top navbar navbar-expand-lg navbar-light bg-light animate__animated animate__bounceInDown"
id="navigation-bar"
>
<div class="container-md" id="nav-container">
<a class="navbar-brand" href="#">
<img src="images/Logo.png" alt="" />
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav mx-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link text-dark hover-border active" aria-current="page" href="#home"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link text-dark fw-semibold hover-border" href="#products"
>Products</a
>
</li>
<li class="nav-item">
<a class="nav-link text-dark fw-semibold hover-border" href="cart.html"
>My Cart</a
>
</li>
<li class="nav-item">
<a class="nav-link text-dark fw-semibold hover-border" href="#testimonial"
>Reviews</a
>
</li>
<li class="nav-item">
<a class="nav-link text-dark fw-semibold hover-border" href="#faqs">Faqs</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark fw-semibold hover-border" href="#contact"
>Contact Us</a
>
</li>
</ul>
<!-- navbar right side icons -->
<ul class="navbar-nav mb-2 mb-lg-0">
<li class="nav-item d-flex align-items-center border-0">
<a class="nav-link dont-activate" href="#">
<i
class="bi bi-search text-dark fw-bold me-4 me-md-3 fs-5"
></i>
</a>
<a
class="nav-link dont-activate"
href="cart.html"
id="cart-icon"
>
<input type="text" id="cart-icon-input" readonly value="0" />
<i
class="bi bi-bag-plus text-dark fw-bold me-4 me-md-3 fs-5"
></i>
</a>
</li>
<!-- navbar right profile icon -->
<li class="nav-item dropdown border-0">
<a
class="nav-link dropdown-toggle dont-activate"
href="#"
id="navbarDropdownMenuLink"
data-bs-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>
<img
width="40px"
height="40px"
src="images/11zon_cropped.png"
alt=""
/>
</a>
<div
class="dropdown-menu dropdown-menu-right text-right"
aria-labelledby="navbarDropdownMenuLink"
>
<a class="dropdown-item" href="#">Profile</a>
<a class="dropdown-item" href="cart.html">My Cart</a>
<a class="dropdown-item" href="#">Favourites</a>
<a class="dropdown-item" href="#">Order History</a>
<a class="dropdown-item" href="#">Log Out</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
<!-- navigation bar end -->
<!-- top banner start -->
<section id="home" class="container-md">
<div class="row d-flex align-items-center">
<div
class="col-md-6 order-1 order-md-0 animate__animated animate__fadeInLeft animate__slower"
>
<div>
<h1 class="py-3">Modern Furniture For Modern Living Style</h1>
</div>
<p>
In unfeeling existence objection immediate repulsive on he in.
Imprudence comparison uncommonly me he difficulty diminution
resolution. Likewise proposal differed scarcely dwelling as on
raillery. September few dependent extremity own continued and ten
prevailed attending. Early to weeks we could. Do commanded an
shameless we disposing do. Indulgence ten remarkably nor are
impression out. Power is lived means oh every in we quiet.
</p>
<div class="pt-3 top-buttons">
<button class="btn btn-warning py-3 px-4 me-3 text-white animate__animated animate__fadeInLeft animate__delay-1s">
START SHOPPING
</button>
<button class="btn btn-outline-warning py-3 px-4 animate__animated animate__fadeInLeft animate__delay-2s">
Shop On A Budget
</button>
</div>
</div>
<div
class="col-md-6 d-flex justify-content-center animate__animated animate__fadeInRight animate__slower"
>
<img width="100%" class="top-pic" src="images/image2.png" alt="" />
</div>
</div>
</section>
<!-- top banner end -->
</header>
<main>
<!-- clients section start -->
<section class="container-md clients mx-auto" data-aos="fade-up">
<div class="title d-flex justify-content-center my-3">
<h6 class="fw-bolder">SOME OF OUR TRUSTED CLIENTS</h6>
</div>
<div class="row d-flex align-items-center gx-0 gy-3">
<div class="col-12 col-md-2 d-flex justify-content-center">
<img src="images/logo-2.png" alt="" />
</div>
<div class="col-12 col-md-2 d-flex justify-content-center">
<img src="images/logo (2).png" alt="" />
</div>
<div class="col-12 col-md-2 d-flex justify-content-center">
<img src="images/logo-3.png" alt="" />
</div>
<div class="col-12 col-md-2 d-flex justify-content-center">
<img src="images/logo-4.png" alt="" />
</div>
<div class="col-12 col-md-2 d-flex justify-content-center">
<img src="images/logo-5.png" alt="" />
</div>
<div class="col-12 col-md-2 d-flex justify-content-center">
<img src="images/logo-1.png" alt="" />
</div>
</div>
</section>
<!-- clients section end -->
<!-- furniture types section start -->
<section class="container-fluid my-5" data-aos="fade-up">
<div class="row">
<div class="col-md-6 col-12 d-flex align-items-center bg-info p-5">
<div>
<h1>Residential Furniture</h1>
<h6 class="pt-5">
<a href="#" class="text-decoration-none">Browse Collection</a>
</h6>
</div>
<div>
<img
class="w-100"
src="images/furn-type2-removebg-preview.png"
alt=""
/>
</div>
</div>
<div
class="col-md-6 col-12 d-flex align-items-center bg-dark text-white p-5"
>
<div>
<h1>Hospitality Furniture</h1>
<h6 class="pt-5">
<a href="#" class="text-decoration-none">Browse Collection</a>
</h6>
</div>
<div>
<img
class="w-100"
src="images/furn-type1-removebg-preview.png"
alt=""
/>
</div>
</div>
</div>
</section>
<!-- furniture types section end -->
<!-- Please Wait Message -->
<div id="loader">
<div class="spinner-border text-warning me-2" role="status">
<span class="visually-hidden">Loading...</span>
</div>
<em>Please wait resources are loading...</em>
</div>
<!-- Products section start -->
<section class="container" data-aos="fade-up">
<!-- product header -->
<nav
id="products"
class="navbar navbar-expand-lg navbar-light bg-white"
>
<div class="container">
<a class="navbar-brand fs-2 fw-bold" href="products">Products</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav mx-auto mt-3">
<a class="nav-link fs-6" aria-current="page" href="#"
>Most Popular</a
>
<a class="nav-link fs-6" href="#">Best Selling</a>
</div>
<div class="mt-3 d-flex align-items-center">
<a class="nav-link fs-5 test-dark" href="#">See all</a>
<a class="bi bi-arrow-right fs-5 mt-1"></a>
</div>
</div>
</div>
</nav>
<!-- products filter -->
<div
class="container-fluid container-md d-flex align-items-end justify-content-center my-5"
>
<h6 class="text-muted me-4">All</h6>
<h6 class="text-muted me-4">Bed</h6>
<h6 class="text-muted me-4">Sofa</h6>
<h6 class="text-dark me-4">Chair</h6>
<h6 class="text-muted">Light Furnitures</h6>
</div>
<!-- products -->
<section class="container-md" data-aos="fade-up">
<div class="row ms-3 ms-md-0">
<div class="col-lg-4" data-aos="fade-up" data-aos-once="true">
<div
class="product border border-warning p-3 rounded-3"
style="
height: 90%;
width: 90%;
background-image: url(images/Bg.png);
background-repeat: no-repeat;
background-size: 100% 100%;
"
>
<center>
<button
class="btn btn-warning rounded-pill pe-1 add-to-cart-btn"
>
Add To Cart
<i
class="bi bi-cart3 rounded-pill bg-danger px-3 py-1 text-white fs-6"
></i>
</button>
</center>
<h2 class="mt-3 ms-3">Ramon Tool</h2>
<h6 class="ms-3">
$66.00
<small class="text-muted text-decoration-line-through ps-5"
>$95.00</small
>
</h6>
<img
src="images/Product_Image_01-removebg-preview.png"
alt=""
class="w-100"
/>
</div>
</div>
<div class="col-lg-4" data-aos="fade-up" data-aos-once="true">
<div
class="product border border-warning p-3 rounded-3"
style="
height: 90%;
width: 90%;
background-image: url(images/Bg.png);
background-repeat: no-repeat;
background-size: 100% 100%;
"
>
<center>
<button
class="btn btn-warning rounded-pill pe-1 add-to-cart-btn"
>
Add To Cart
<i
class="bi bi-cart3 rounded-pill bg-danger px-3 py-1 text-white fs-6"
></i>
</button>
</center>
<h2 class="mt-3 ms-3">Flexform</h2>
<h6 class="ms-3">
$90.00
<small class="text-muted text-decoration-line-through ps-5"
>$95.00</small
>
</h6>
<img
src="images/Product_Image_02-removebg-preview.png"
alt=""
class="w-100"
/>
</div>
</div>
<div class="col-lg-4" data-aos="fade-up" data-aos-once="true">
<div
class="product border border-warning p-3 rounded-3"
style="
height: 90%;
width: 90%;
background-image: url(images/Bg.png);
background-repeat: no-repeat;
background-size: 100% 100%;
"
>
<center>
<button
class="btn btn-warning rounded-pill pe-1 add-to-cart-btn"
>
Add To Cart
<i
class="bi bi-cart3 rounded-pill bg-danger px-3 py-1 text-white fs-6"
></i>
</button>
</center>
<h2 class="mt-3 ms-3">Paroda</h2>
<h6 class="ms-3">
$80.00
<small class="text-muted text-decoration-line-through ps-5"
>$95.00</small
>
</h6>
<img
src="images/Product_Image_03-removebg-preview.png"
alt=""
class="w-100"
/>
</div>
</div>
<div class="col-lg-4" data-aos="fade-up" data-aos-once="true">
<div
class="product border border-warning p-3 rounded-3"
style="
height: 90%;
width: 90%;
background-image: url(images/Bg.png);
background-repeat: no-repeat;
background-size: 100% 100%;
"
>
<center>
<button
class="btn btn-warning rounded-pill pe-1 add-to-cart-btn"
>
Add To Cart
<i
class="bi bi-cart3 rounded-pill bg-danger px-3 py-1 text-white fs-6"
></i>
</button>
</center>
<h2 class="mt-3 ms-3">Taknion</h2>
<h6 class="ms-3">
$30.00
<small class="text-muted text-decoration-line-through ps-5"
>$95.00</small
>
</h6>
<img
src="images/Product_Image_04-removebg-preview.png"
alt=""
class="w-100"
/>
</div>
</div>
<div class="col-lg-4" data-aos="fade-up" data-aos-once="true">
<div
class="product border border-warning p-3 rounded-3"
style="
height: 90%;
width: 90%;
background-image: url(images/Bg.png);
background-repeat: no-repeat;
background-size: 100% 100%;
"
>
<center>
<button
class="btn btn-warning rounded-pill pe-1 add-to-cart-btn"
>
Add To Cart
<i
class="bi bi-cart3 rounded-pill bg-danger px-3 py-1 text-white fs-6"
></i>
</button>
</center>
<h2 class="mt-3 ms-3">Amora</h2>
<h6 class="ms-3">
$56.00
<small class="text-muted text-decoration-line-through ps-5"
>$95.00</small
>
</h6>
<img
src="images/Product_Image_05-removebg-preview.png"
alt=""
class="w-100 h-75"
/>
</div>
</div>
<div class="col-lg-4" data-aos="fade-up" data-aos-once="true">
<div
class="product border border-warning p-3 rounded-3"
style="
height: 90%;
width: 90%;
background-image: url(images/Bg.png);
background-repeat: no-repeat;
background-size: 100% 100%;
"
>
<center>
<button
class="btn btn-warning rounded-pill pe-1 add-to-cart-btn"
>
Add To Cart
<i
class="bi bi-cart3 rounded-pill bg-danger px-3 py-1 text-white fs-6"
></i>
</button>
</center>
<h2 class="mt-3 ms-3">Liquid Contract</h2>
<h6 class="ms-3">
$90.00
<small class="text-muted text-decoration-line-through ps-5"
>$95.00</small
>
</h6>
<img
src="images/Product_Image_06-removebg-preview.png"
alt=""
class="w-100 h-75"
/>
</div>
</div>
</div>
</section>
<!-- Load more button -->
<div class="d-grid gap-2 col-6 mx-auto" data-aos="fade-right">
<button class="btn btn-outline-danger fs-5 fw-bold" type="button">
See More ...
</button>
</div>
</section>
<!-- product section end -->
<!-- Reviews start -->
<section class="container-md mx-md-auto testimonial" id="testimonial" data-aos="fade-left">
<div class="client-header my-4" data-aos="fade-up">
<h1 class="fw-bold text-center">
Happy <span style="color: #fee60c;">Clients Says</span>
</h1>
</div>
<div
id="carouselExampleIndicators"
class="carousel slide p-5"
data-bs-ride="carousel"
>
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="0"
class="active bg-danger mt-5"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="1"
class="bg-danger mt-5"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#carouselExampleIndicators"
data-bs-slide-to="2"
class="bg-danger mt-5"
aria-label="Slide 3"
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item">
<div class="row d-flex align-items-center justify-content-center">
<div class="col-md-6">
<div class="me-4 d-flex justify-content-center">
<img class="img-thumbnail" src="images/user1.jpg" alt="" />
</div>
</div>
<div class="col-md-6">
<h1>Best Products So Far.. Best Service So Far...</h1>
<p class="user-review">
Dwelling and speedily ignorant any steepest. Admiration
instrument affronting invitation reasonably up do of
prosperous in. Shy saw declared age debating ecstatic man.
Call in so want pure rank am dear were. Remarkably to
continuing in surrounded diminution on.
</p>
<h6 class="text-danger fw-bold">Mike Taylor</h6>
<span class="me-4 text-muted"> 20 January, 2021</span>
<span class="text-warning">
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
</span>
</div>
</div>
</div>
<div class="carousel-item active">
<div class="row d-flex align-items-center justify-content-center">
<div class="col-md-6">
<div class="me-4 d-flex justify-content-center">
<img class="img-thumbnail" src="images/user2.jpg" alt="" />
</div>
</div>
<div class="col-md-6">
<h1>The Best Online Shop Ever and The Service is Awesome</h1>
<p class="user-review">
Dwelling and speedily ignorant any steepest. Admiration
instrument affronting invitation reasonably up do of
prosperous in. Shy saw declared age debating ecstatic man.
Call in so want pure rank am dear were. Remarkably to
continuing in surrounded diminution on.
</p>
<h6 class="text-danger fw-bold">Mike Taylor</h6>
<span class="me-4 text-muted"> 20 January, 2021</span>
<span class="text-warning">
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
</span>
</div>
</div>
</div>
<div class="carousel-item">
<div class="row d-flex align-items-center justify-content-center">
<div class="col-md-6">
<div class="me-4 d-flex justify-content-center">
<img class="img-thumbnail" src="images/user3.jpg" alt="" />
</div>
</div>
<div class="col-md-6">
<h1>So Far The Best Customer Service</h1>
<p class="user-review">
Dwelling and speedily ignorant any steepest. Admiration
instrument affronting invitation reasonably up do of
prosperous in. Shy saw declared age debating ecstatic man.
Call in so want pure rank am dear were. Remarkably to
continuing in surrounded diminution on.
</p>
<h6 class="text-danger fw-bold">Mike Taylor</h6>
<span class="me-4 text-muted"> 20 January, 2021</span>
<span class="text-warning">
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- customer review section end -->
<!-- faq section started -->
<section class="container-md mb-5" id="faqs">
<div class="faq-header" data-aos="fade-up">
<h1 class="fw-bold text-center">
Frequently Asked<span style="color: #e66f51;"> Questions</span>
</h1>
</div>
<div
class="row d-md-flex align-items-md-center justify-content-md-around"
>
<div class="col-lg-6" data-aos="fade-up">
<img width="100%" class="p-5 mt-4" src="images/faq2.jpg" alt="" />
</div>
<!-- item - 1 -->
<div class="col-lg-6 mb-3">
<div class="accordion" id="accordionPanelsStayOpenExample">
<div class="accordion-item rounded-3" data-aos="fade-up">
<h2 class="accordion-header" id="panelsStayOpen-headingOne">
<button
class="accordion-button"
type="button"
data-bs-toggle="collapse"
data-bs-target="#panelsStayOpen-collapseOne"
aria-expanded="true"
aria-controls="panelsStayOpen-collapseOne"
>
How many years should furniture be expected to last?
</button>
</h2>
<div
id="panelsStayOpen-collapseOne"
class="accordion-collapse collapse show"
aria-labelledby="panelsStayOpen-headingOne"
>
<div class="accordion-body">
10 to 15 years for sofas/beds; longer for quality wood
pieces Ultimate lifespan depends on the frequency and type
of care Longevity is also affected by how/how often the
piece is used
</div>
</div>
</div>
<!-- items-2 -->
<div class="accordion-item mt-3 rounded border" data-aos="fade-up" data-aos-delay="200">
<h2 class="accordion-header" id="panelsStayOpen-headingTwo">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#panelsStayOpen-collapseTwo"
aria-expanded="false"
aria-controls="panelsStayOpen-collapseTwo"
>
What types of furniture have the best investment value?
</button>
</h2>
<div
id="panelsStayOpen-collapseTwo"
class="accordion-collapse collapse"
aria-labelledby="panelsStayOpen-headingTwo"
>
<div class="accordion-body">
Focus on quality and functionality, not just the price tag
Solid wood (cherry, mahogany, oak) offers the best value
Address basic needs first: sofa, dining table and chairs,
bed
</div>
</div>
</div>
<!-- items-3 -->
<div class="accordion-item mt-3 border rounded" data-aos="fade-up" data-aos-delay="300">
<h2 class="accordion-header" id="panelsStayOpen-headingThree">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#panelsStayOpen-collapseThree"
aria-expanded="false"
aria-controls="panelsStayOpen-collapseThree"
>
Is it better to buy new or used furniture?
</button>
</h2>
<div
id="panelsStayOpen-collapseThree"
class="accordion-collapse collapse"
aria-labelledby="panelsStayOpen-headingThree"
>
<div class="accordion-body">
New furniture is recommended for showpieces in main rooms
New furniture comes with guarantees/without potential issues
Consider used furniture for short-term or temporary purposes
</div>
</div>
</div>
<!-- items-4 -->
<div class="accordion-item mt-3 border rounded" data-aos="fade-up" data-aos-delay="400">
<h2 class="accordion-header" id="panelsStayOpen-headingfour">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#panelsStayOpen-collapsefour"
aria-expanded="false"
aria-controls="panelsStayOpen-collapsefour"
>
Should existing furniture be reupholstered or simply
replaced?
</button>
</h2>
<div
id="panelsStayOpen-collapsefour"
class="accordion-collapse collapse"
aria-labelledby="panelsStayOpen-headingfour"
>
<div class="accordion-body">
This depends on the quality and condition of the existing
wood Reupholstering is economical and can extend the life of
the piece Reupholstering is a good option for antique or
one-of-a-kind items
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- frequently asked ques section end -->
<!-- signing up section start -->
<section
id="contact"
style="height: 300px;"
class="container contact my-5 rounded-3 d-flex justify-content-center align-items-center border"
data-aos="fade-up"
>
<div>
<h1>LET'S STAY IN TOUCH</h1>
<p>Get updates on sales, specials and more</p>
<form action="registration-msg.php" method="post" class="" id="contact-form">
<div class="row g-3 align-items-center mb-2">
<div class="col-auto">
<input
type="text"
class="form-control rounded-3"
name="user_fname"
placeholder="First Name"
/>
</div>
<div class="col-auto">
<input
type="text"
class="form-control rounded-3"
name="user_lname"
placeholder="Last Name"
/>
</div>
</div>
<input
class="form-control rounded-3"
name="user_email"
type="email"
placeholder="Your E-mail"
required
/>
<button type="submit" class="submit-button rounded-pill mt-4">
Submit
</button>
</form>
</div>
</section>
<!-- signing up section end -->
<!-- footer start -->
<footer id="contact" class="mt-5 pt-5 container">
<div class="row">
<div class="col-md-4">
<img src="images/Logo.png" alt="" />
</div>
<div class="col-md-4 d-md-flex justify-content-between">
<h6 class="my-3 my-md-0">About</h6>
<h6 class="mb-3 mb-md-0">Product</h6>
<h6 class="mb-3 mb-md-0">Services</h6>
<h6 class="mb-3 mb-md-0">Contact</h6>
</div>
<div class="col-md-4 d-md-flex justify-content-end">
<i class="bi bi-facebook me-3 fs-5"></i>
<i class="bi bi-instagram me-3 fs-5"></i>
<i class="bi bi-youtube fs-5"></i>
</div>
</div>
<hr class="mb-5" />
<div class="text-center">
<p class="text-muted my-5 fw-bold">
Made With ❤️ by
<a href="https://uzzal.netlify.app" target="_blank" id="footer-name"
>Uzzal Bhowmik</a
>
</p>
</div>
</footer>
<!-- footer end -->
</main>
<!-- toastify script -->
<script src="https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js"></script>
<!-- animation on scroll library script -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration: 700
});
</script>
<!-- bootstrap script -->
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF"
crossorigin="anonymous"
></script>
<!-- custom javascript -->
<script src="script.js"></script>
</body>
</html>