-
Notifications
You must be signed in to change notification settings - Fork 0
/
home-nft.html
770 lines (741 loc) · 47.6 KB
/
home-nft.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
<!DOCTYPE html>
<html lang="en">
<!-- Mirrored from surielementor.com/icolandhtml/home-nft.html by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 03 Nov 2022 07:31:39 GMT -->
<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>Your Organization Name</title>
<!-- Styles -->
<link rel="stylesheet" href="app/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="app/dist/app.css">
<link href="app/dist/aos.css" rel="stylesheet">
<!-- end Styles -->
<!-- Favicon and Touch Icons -->
<link rel="shortcut icon" href="assets/images/logo/favicon.png">
<link rel="apple-touch-icon-precomposed" href="assets/images/logo/favicon.png">
</head>
<body class="home-nft header-fixed" data-magic-cursor="show">
<!-- Preloading -->
<div class="preloader">
<div class=" loader">
<div class="square"></div>
<div class="path">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<p class="text-load">Loading :</p>
</div>
</div>
<!-- End Preloading -->
<!-- MAGIC CURSOR -->
<div class="mouse-cursor cursor-outer"></div>
<div class="mouse-cursor cursor-inner"></div>
<!-- /MAGIC CURSOR -->
<!-- Header -->
<header id="header_main" class="header">
<div class="container">
<div class="row">
<div class="col-12">
<div class="header__body">
<div class="header__logo">
<a href="index-2.html">
<h3 class="text-white">Your Logo</h3>
</a>
</div>
<div class="header__right">
<nav id="main-nav" class="main-nav">
<ul id="menu-primary-menu" class="menu">
<li class="menu-item menu-item-has-children current-menu-item">
<a href="#">Home Page</a>
<ul class="sub-menu">
<li class="menu-item"><a href="index-2.html">Home Main</a></li>
<li class="menu-item current-item"><a href="home-nft.html">Home NFT 01</a></li>
<li class="menu-item"><a href="home-nft-v2.html">Home NFT 02</a></li>
<li class="menu-item"><a href="home-music.html">Home Music</a></li>
<li class="menu-item"><a href="home-defi-v1.html">Home Defi 01</a></li>
<li class="menu-item"><a href="home-defi-v2.html">Home Defi 02</a></li>
<li class="menu-item"><a href="home-defi-v3.html">Home Defi 03</a></li>
<li class="menu-item"><a href="home-defi-v4.html">Home Defi 04</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">Home Dashboad</a>
<ul class="sub-menu">
<li class="menu-item"><a href="dashboard-tokensales.html">Token Sales</a></li>
<li class="menu-item"><a href="dashboard-features.html">Our Feature</a></li>
<li class="menu-item"><a href="dashboard-roadmap.html">Road Map</a></li>
<li class="menu-item"><a href="dashboard-creations.html">Our Creations</a></li>
<li class="menu-item"><a href="dashboard-team.html">Our Team</a></li>
<li class="menu-item"><a href="dashboard-faq.html">FaQs</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">Blog Page</a>
<ul class="sub-menu">
<li class="menu-item"><a href="blog-v1.html">Blog Style 01</a></li>
<li class="menu-item"><a href="blog-v2.html">Blog Style 02</a></li>
<li class="menu-item"><a href="blog-v3.html">Blog Style 03</a></li>
</ul>
</li>
<li class="menu-item">
<a href="connect-wallet.html">Connect Wallet</a>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">Elements</a>
<ul class="sub-menu">
<li class="menu-item"><a href="about-us.html">About Us</a></li>
<li class="menu-item"><a href="features.html">Features</a></li>
<li class="menu-item"><a href="roadmap.html">Road Map</a></li>
<li class="menu-item"><a href="document.html">Documents</a></li>
<li class="menu-item"><a href="our-team.html">Our Team</a></li>
<li class="menu-item"><a href="partner.html">Partner</a></li>
<li class="menu-item"><a href="token-sales.html">Token Sale</a></li>
<li class="menu-item"><a href="button.html">Button</a></li>
<li class="menu-item"><a href="footer.html">Footer</a></li>
<li class="menu-item"><a href="faq.html">Faq</a></li>
<li class="menu-item"><a href="icon.html">Icon</a></li>
</ul>
</li>
<li class="menu-item menu-item-has-children">
<a href="#">Pages</a>
<ul class="sub-menu">
<li class="menu-item"><a href="sign-in.html">Sign In</a></li>
<li class="menu-item"><a href="sign-up.html">Sign Up</a></li>
<li class="menu-item"><a href="page-404.html">Page 404</a></li>
<li class="menu-item"><a href="comingsoon.html">Coming Soon</a></li>
</ul>
</li>
</ul>
</nav>
<div class="group-button">
<a href="#" class="btn-action-outline style-1">
<span>EN</span>
</a>
<a class="btn-action style-2" href="#">
<span>Login</span>
</a>
</div>
<div class="mobile-button"><span></span></div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- end Header -->
<!-- Banner Top -->
<section class="banner-top style-2">
<div class="container">
<div class="row">
<div class="col-xl-6 col-md-12">
<div class="banner-top__content">
<h2 class="title">Mint, sell, and <span>trade NFTs</span> at scale.</h2>
<p class="desc">Outcome-centered products that reduce churn, optimize pricing, and grow your subscription business end-to-end.</p>
<div class="button">
<a href="sign-in.html" class="btn-action style-2"><span>BUY TOKEN</span></a>
</div>
<ul class="content-list">
<li>
<span class="icon-brute"></span>
<h5>+128K</h5>
<p>Current Holders</p>
</li>
<li>
<span class="icon-pegasus"></span>
<h5>+2 mILLION</h5>
<p>CryptoItem</p>
</li>
<li>
<span class="icon-bear-face"></span>
<h5>+3.000 USD</h5>
<p>Total Volume</p>
</li>
</ul>
</div>
</div>
<div class="col-xl-6 col-md-12">
<div class="banner-top__sale">
<img src="assets/images/layout/banner01.png" alt="ICOLand">
<div class="sale-content">
<h6>Token sale End In!</h6>
<span class="js-countdown" data-timer="1865550"></span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end Banner Top -->
<!-- Section Features -->
<section class="about style-2">
<div class="container">
<div class="row">
<div class="col-12">
<div class="about__content">
<div class="row">
<div class="col-xl-5 col-md-12">
<div class="block-text">
<h3 class="title">What is ICO?</h3>
<p class="fs-20 mt-12">ICO Land is a generative NFT art collectible project of 10.000 unique, digitally hand-drawn avatars immortalized on the Ethereum blockchain.</p>
</div>
</div>
<div class="col-xl-7 col-md-12">
<div class="tf-box">
<div class="box-icon">
<span class="icon-buy"></span>
<p>Buy and sell items easily</p>
</div>
<div class="box-icon">
<span class="icon-create"></span>
<p>Create collections & earn rewards</p>
</div>
<div class="box-icon">
<span class="icon-chase"></span>
<p>Chase limited edition ICOLand</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Section Features -->
<!-- Section RoadMap -->
<section class="road-map style-1" id="roadmap">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block-text" data-aos="fade-up" data-aos-duration="1000">
<h3 class="heading">Roadmap</h3>
<p>The most technologically advanced species will not stop any time soon...</p>
</div>
<div class="road-map__content">
<div class="box-roadmap">
<div class="box-roadmap__top">
<h6><span>Level 01</span> - CyberKongz VX Launch </h6>
<div class="shape active"></div>
</div>
<div class="box-roadmap__main">
<div class="text"><p>The time for you to get your own CyberKongz VX as a custom playable Metaverse Avatar has finally arrived. CyberKongz VX are launched in partnership with The Sandbox and the integration as playable avatars into The Sandbox game is now in development.</p></div>
<img src="assets/images/layout/roadmap01.png" alt="ICOLand" data-aos="fade-down" data-aos-duration="1000">
</div>
</div>
<div class="box-roadmap s2">
<div class="box-roadmap__top">
<h6><span>Level 02</span> - Kongz Utility Expansion </h6>
<div class="shape"></div>
</div>
<div class="box-roadmap__main">
<div class="text"><p>The time for you to get your own CyberKongz VX as a custom playable Metaverse Avatar has finally arrived. CyberKongz VX are launched in partnership with The Sandbox and the integration as playable avatars into The Sandbox game is now in development.</p></div>
<img src="assets/images/layout/roadmap02.png" alt="ICOLand" data-aos="fade-down" data-aos-duration="1000">
</div>
</div>
<div class="box-roadmap">
<div class="box-roadmap__top">
<h6><span>Level 03</span> - Kongz Island </h6>
<div class="shape"></div>
</div>
<div class="box-roadmap__main">
<div class="text"><p>The time for you to get your own CyberKongz VX as a custom playable Metaverse Avatar has finally arrived. CyberKongz VX are launched in partnership with The Sandbox and the integration as playable avatars into The Sandbox game is now in development.</p></div>
<img src="assets/images/layout/roadmap03.png" alt="ICOLand" data-aos="fade-down" data-aos-duration="1000">
</div>
</div>
<div class="box-roadmap s2">
<div class="box-roadmap__top">
<h6><span>Level 04</span> - The Banana Shop</h6>
<div class="shape"></div>
</div>
<div class="box-roadmap__main">
<div class="text"><p>The time for you to get your own CyberKongz VX as a custom playable Metaverse Avatar has finally arrived. CyberKongz VX are launched in partnership with The Sandbox and the integration as playable avatars into The Sandbox game is now in development.</p></div>
<img src="assets/images/layout/roadmap04.png" alt="ICOLand" data-aos="fade-down" data-aos-duration="1000">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end Section RoadMap -->
<!-- Section Creation -->
<section class="creation" id="creation">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block-text center" data-aos="fade-up" data-aos-duration="1000">
<h3 class="title">Creation</h3>
<p class="desc">The most technologically advanced species will not stop any time soon...</p>
</div>
<div class="creation__main">
<div class="box-nft">
<span class="icon-union-01"></span>
<span class="icon-union-02"></span>
<span class="icon-union-03"></span>
<span class="icon-union-04"></span>
<div class="box-nft__main">
<a href="#"><img src="assets/images/nft/nft-01.jpg" alt="ICOLand"></a>
<div class="content">
<a href="#" class="h4 title">NFT - Monkey</a>
</div>
</div>
</div>
<div class="box-nft">
<span class="icon-union-01"></span>
<span class="icon-union-02"></span>
<span class="icon-union-03"></span>
<span class="icon-union-04"></span>
<div class="box-nft__main">
<a href="#"><img src="assets/images/nft/nft-02.jpg" alt="ICOLand"></a>
<div class="content">
<a href="#" class="h4 title">NFT - Monkey</a>
</div>
</div>
</div>
<div class="box-nft">
<span class="icon-union-01"></span>
<span class="icon-union-02"></span>
<span class="icon-union-03"></span>
<span class="icon-union-04"></span>
<div class="box-nft__main">
<a href="#"><img src="assets/images/nft/nft-03.jpg" alt="ICOLand"></a>
<div class="content">
<a href="#" class="h4 title">NFT - Monkey</a>
</div>
</div>
</div>
<div class="box-nft">
<span class="icon-union-01"></span>
<span class="icon-union-02"></span>
<span class="icon-union-03"></span>
<span class="icon-union-04"></span>
<div class="box-nft__main">
<a href="#"><img src="assets/images/nft/nft-04.jpg" alt="ICOLand"></a>
<div class="content">
<a href="#" class="h4 title">NFT - Monkey</a>
</div>
</div>
</div>
<div class="box-nft">
<span class="icon-union-01"></span>
<span class="icon-union-02"></span>
<span class="icon-union-03"></span>
<span class="icon-union-04"></span>
<div class="box-nft__main">
<a href="#"><img src="assets/images/nft/nft-05.jpg" alt="ICOLand"></a>
<div class="content">
<a href="#" class="h4 title">NFT - Monkey</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Section Creation -->
<!-- Section Document -->
<section class="document style-1" id="document">
<div class="container">
<div class="row">
<div class="document__main">
<div class="row">
<div class="col-md-12">
<div class="block-text center">
<h3 class="heading">Document</h3>
<p class="desc">Download the whitepaper and learn about ICO Token, the unique ICO Crypto approach and the team/advisors.</p>
</div>
</div>
<div class="col-md-12">
<div class="document__content">
<div class="box-document">
<div class="content">
<h4 class="title">ONE PAPER</h4>
<a href="#" class="icon">
<img src="assets/images/icon/download.png" alt="ICOLand">
</a>
</div>
</div>
<div class="box-document">
<div class="content">
<h4 class="title">WHITE PAPER</h4>
<a href="#" class="icon">
<img src="assets/images/icon/download.png" alt="ICOLand">
</a>
</div>
</div>
<div class="box-document">
<div class="content">
<h4 class="title">PRIVACY POLICY</h4>
<a href="#" class="icon">
<img src="assets/images/icon/download.png" alt="ICOLand">
</a>
</div>
</div>
<div class="box-document">
<div class="content">
<h4 class="title">TERM OF COIN SALES</h4>
<a href="#" class="icon">
<img src="assets/images/icon/download.png" alt="ICOLand">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Section Document -->
<!-- Section Team -->
<section class="section-team team-8" id="team">
<div class="container">
<div class="row">
<div class="col-12">
<div class="flat-tabs">
<ul class="menu-tab">
<li class="active"><div class="image"><img src="assets/images/avt/team-01.jpg" alt="ICOLand"></div></li>
<li><div class="image"><img src="assets/images/avt/team-v02.png" alt="ICOLand"></div></li>
<li><div class="image"><img src="assets/images/avt/team-v03.png" alt="ICOLand"></div></li>
<li><div class="image"><img src="assets/images/avt/team-v04.png" alt="ICOLand"></div></li>
<li><div class="image"><img src="assets/images/avt/team-v05.png" alt="ICOLand"></div></li>
</ul>
<div class="content-tab">
<div class="content-inner">
<div class="image">
<img src="assets/images/avt/team-v01.png" alt="ICOLand">
</div>
<div class="content">
<div class="block-text">
<h3 class="heading">Executive Team</h3>
<p>Our team player alway finds effective ways to improve the product and process</p>
</div>
<div class="info">
<span class="icon-union-01"></span>
<span class="icon-union-02"></span>
<span class="icon-union-03"></span>
<span class="icon-union-04"></span>
<h4 class="name">Charlee Mangar</h4>
<p class="position">Co-founder & COO</p>
<p class="text">As Sneakerheadz is a members only club, holding one of our Genesis "OG" NFTs grants you access to exclusivity only we can provide.</p>
<ul class="list-social">
<li><span class="icon-twitter"></span></li>
<li><span class="icon-facebook"></span></li>
<li><span class="icon-place"></span></li>
<li><span class="icon-reddit"></span></li>
</ul>
</div>
</div>
</div>
<div class="content-inner">
<div class="image">
<img src="assets/images/avt/team-v02.png" alt="ICOLand">
</div>
<div class="content">
<div class="block-text">
<h3>Executive Team</h3>
<p>Our team player alway finds effective ways to improve the product and process</p>
</div>
<div class="info">
<span class="icon-union-01"></span>
<span class="icon-union-02"></span>
<span class="icon-union-03"></span>
<span class="icon-union-04"></span>
<h4 class="name">Charlee Mangar</h4>
<p class="position">Co-founder & COO</p>
<p class="text">As Sneakerheadz is a members only club, holding one of our Genesis "OG" NFTs grants you access to exclusivity only we can provide.</p>
<ul class="list-social">
<li><span class="icon-twitter"></span></li>
<li><span class="icon-facebook"></span></li>
<li><span class="icon-place"></span></li>
<li><span class="icon-reddit"></span></li>
</ul>
</div>
</div>
</div>
<div class="content-inner">
<div class="image">
<img src="assets/images/avt/team-v03.png" alt="ICOLand">
</div>
<div class="content">
<div class="block-text">
<h3>Executive Team</h3>
<p>Our team player alway finds effective ways to improve the product and process</p>
</div>
<div class="info">
<span class="icon-union-01"></span>
<span class="icon-union-02"></span>
<span class="icon-union-03"></span>
<span class="icon-union-04"></span>
<h4 class="name">Charlee Mangar</h4>
<p class="position">Co-founder & COO</p>
<p class="text">As Sneakerheadz is a members only club, holding one of our Genesis "OG" NFTs grants you access to exclusivity only we can provide.</p>
<ul class="list-social">
<li><span class="icon-twitter"></span></li>
<li><span class="icon-facebook"></span></li>
<li><span class="icon-place"></span></li>
<li><span class="icon-reddit"></span></li>
</ul>
</div>
</div>
</div>
<div class="content-inner">
<div class="image">
<img src="assets/images/avt/team-v04.png" alt="ICOLand">
</div>
<div class="content">
<div class="block-text">
<h3>Executive Team</h3>
<p>Our team player alway finds effective ways to improve the product and process</p>
</div>
<div class="info">
<span class="icon-union-01"></span>
<span class="icon-union-02"></span>
<span class="icon-union-03"></span>
<span class="icon-union-04"></span>
<h4 class="name">Charlee Mangar</h4>
<p class="position">Co-founder & COO</p>
<p class="text">As Sneakerheadz is a members only club, holding one of our Genesis "OG" NFTs grants you access to exclusivity only we can provide.</p>
<ul class="list-social">
<li><span class="icon-twitter"></span></li>
<li><span class="icon-facebook"></span></li>
<li><span class="icon-place"></span></li>
<li><span class="icon-reddit"></span></li>
</ul>
</div>
</div>
</div>
<div class="content-inner">
<div class="image">
<img src="assets/images/avt/team-v05.png" alt="ICOLand">
</div>
<div class="content">
<div class="block-text">
<h3>Executive Team</h3>
<p>Our team player alway finds effective ways to improve the product and process</p>
</div>
<div class="info">
<span class="icon-union-01"></span>
<span class="icon-union-02"></span>
<span class="icon-union-03"></span>
<span class="icon-union-04"></span>
<h4 class="name">Charlee Mangar</h4>
<p class="position">Co-founder & COO</p>
<p class="text">As Sneakerheadz is a members only club, holding one of our Genesis "OG" NFTs grants you access to exclusivity only we can provide.</p>
<ul class="list-social">
<li><span class="icon-twitter"></span></li>
<li><span class="icon-facebook"></span></li>
<li><span class="icon-place"></span></li>
<li><span class="icon-reddit"></span></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Section Team -->
<!-- Section Faq -->
<section class="section-faq style-2">
<div class="container">
<div class="row">
<div class="col-xl-6 col-md-12">
<div class="faq__content">
<div class="block-text">
<h3 class="heading">Have Any Question? </h3>
<p>Download the whitepaper and learn about ICO Token, the unique ICO Crypto approach and the team/advisors.</p>
</div>
<div class="flat-tabs">
<ul class="menu-tab">
<li class="active"><h6>General</h6></li>
<li><h6>Pre ICO & ICO</h6></li>
<li><h6>Token</h6></li>
<li><h6>Client</h6></li>
<li><h6>Legal</h6></li>
</ul>
<div class="content-tab">
<div class="content-inner flat-accordion">
<div class="flat-toggle">
<h6 class="toggle-title">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle active">
<h6 class="toggle-title active">What is Shopi. return/exchange policy?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle">
<h6 class="toggle-title">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle">
<h6 class="toggle-title">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
</div>
<div class="content-inner flat-accordion">
<div class="flat-toggle active">
<h6 class="toggle-title active">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle">
<h6 class="toggle-title">What is Shopi. return/exchange policy?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle">
<h6 class="toggle-title">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle">
<h6 class="toggle-title">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
</div>
<div class="content-inner flat-accordion">
<div class="flat-toggle">
<h6 class="toggle-title">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle">
<h6 class="toggle-title">What is Shopi. return/exchange policy?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle active">
<h6 class="toggle-title active">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle">
<h6 class="toggle-title">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
</div>
<div class="content-inner flat-accordion">
<div class="flat-toggle">
<h6 class="toggle-title">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle">
<h6 class="toggle-title">What is Shopi. return/exchange policy?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle">
<h6 class="toggle-title">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle active">
<h6 class="toggle-title active">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
</div>
<div class="content-inner flat-accordion">
<div class="flat-toggle">
<h6 class="toggle-title">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle active">
<h6 class="toggle-title active">What is Shopi. return/exchange policy?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle">
<h6 class="toggle-title">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
<div class="flat-toggle">
<h6 class="toggle-title">How can I track my order?</h6>
<p class="toggle-content">We try to keep returns and exchanges as simple as possible. As long as they meet our criteria, it should be no problem at all to return or exchange them.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-md-12">
<div class="faq__images">
<img src="assets/images/layout/imgfaq.png" alt="ICOLand">
</div>
</div>
</div>
</div>
</section>
<!-- End Section Faq -->
<!-- Section Join -->
<section class="join-now" id="contact">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="join-now__main">
<h3>Join our Community</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Enim sed pulvinar nisl amet, viverra nulla ut. Aliquet nunc justo, bibendum nisl varius fringilla odio eu. Ut et, nullam tristique at ultrices. Viverra eget ultrices risus risus massa adipiscing adipiscing. Integer tempus aliquam vitae urna, ipsum mattis hendrerit quam.</p>
<div class="join-now__button">
<a href="#" class="btn-action style-2"><span>JOIN COMMUNITY</span></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Section Join -->
<!-- Footer -->
<footer class="footer style-1">
<div class="footer__top">
<div class="container">
<div class="row">
<div class="col-xl-7 col-md-12">
<div class="content-left">
<h5 class="fs-22">Don't miss out, Stay updated</h5>
<p>Don’t hesitate to subscribe to latest news about ICo</p>
<form action="#" id="subscribe-form">
<input type="email" placeholder="Enter your email" required="" id="subscribe-email">
<button class="btn-action style-2" type="submit" id="subscribe-button"> <span class="effect">SUBSCRIBE</span></button>
</form>
</div>
</div>
<div class="col-xl-5 col-md-12">
<div class="content-right">
<p>Don’t hesitate to subscribe to latest news about ICo markets as well as crucial financial knowledge to become successful investors globally</p>
<ul class="list-social">
<li><span class="icon-twitter"></span></li>
<li><span class="icon-facebook"></span></li>
<li><span class="icon-place"></span></li>
<li><span class="icon-youtobe"></span></li>
<li><span class="icon-tiktok"></span></li>
<li><span class="icon-reddit"></span></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="footer__bottom">
<div class="container">
<div class="row">
<div class="col-md-12">
<p>© 2022.Your Company </p>
</div>
</div>
</div>
</div>
</footer>
<!-- End Footer -->
<a id="scroll-top"></a>
<script src="app/js/jquery.min.js"></script>
<script src="app/js/jquery.easing.js"></script>
<script src="app/js/app.js"></script>
<script src="app/js/count-down.js"></script>
<script src="app/js/aos.js"></script>
<script>
AOS.init();
</script>
<script src="app/js/mouse.js"></script>
</body>
<!-- Mirrored from surielementor.com/icolandhtml/home-nft.html by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 03 Nov 2022 07:31:58 GMT -->
</html>