-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrobadge.html
1313 lines (943 loc) · 58.1 KB
/
crobadge.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
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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">
<title>Crooks Of Cronos NFT</title>
<link rel="stylesheet" href="https://dvzvtsvyecfyp.cloudfront.net/static/css/main.02cdf5a5db4d.css"><script src="https://dvzvtsvyecfyp.cloudfront.net/static/js/main.3b52243c0f20.js" defer></script>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap" rel="stylesheet">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/flexslider.css" type="text/css">
<link href="css/styles.css?v=1.6" rel="stylesheet">
<link href="css/copstyles.css?v=1.6" rel="stylesheet">
<link href="css/queries.css?v=1.6" rel="stylesheet">
<link href="css/jquery.fancybox.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/@xiee/utils/css/faq.min.css" rel="stylesheet"></link>
<script src="https://cdn.jsdelivr.net/npm/@xiee/utils/js/faq.min.js" defer></script>
<!-- Fonts -->
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="https://dvzvtsvyecfyp.cloudfront.net/static/css/main.374165d9fa28.css"><script src="https://dvzvtsvyecfyp.cloudfront.net/static/js/main.4c7f84ac44dc.js" defer></script>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700&display=swap" rel="stylesheet">
</head>
<body>
<div class="topnav">
<a class="active" href="#home"></a>
<a href="index.html">Home</a>
<a href="http://crooksofcronos.shop">Mint Crooks NFT</a>
<a href="https://crobadge.shop/">Mint Cops NFT</a>
<a href="https://crocell.shop/">Mint CroCell NFT</a>
</div>
<script type="text/javascript" src="https://files.coinmarketcap.com/static/widget/coinMarquee.js"></script><div id="coinmarketcap-widget-marquee" coins="3635,16519,21370,16430,14519,20800,20280" currency="USD" theme="light" transparent="true" show-symbol-logo="true"></div>
<section class="" id="">
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center"><img src="img/cops/avatar.png" height="100" img class="circular--square" alt="">
<h1 class="animated bounceInDown">Come Meet The "Cops Of Cronos" </h1><br>
<img src="img/cops/cop.png" height="100" alt="Logo">
<p class="animated fadeInUpDelay">From <b>"TheGrandSchemeOfCrypto" Youtube Channel</b>,
We bring you <i>The "Cops of Cronos"</i><br><br>
<img src="img/YT1.png" alt=""><br>
999 Redeemable NFT's living on the Cronos Blockchain with real utility and value to bring into the ecosystem.<br></br>
<h2>What are the Crobadges for?</h2><br>
❓❓❓❓❓❓❓❓❓❓❓<br>
<p>
We are Cro County and Our First NFT project is called Crooks of Cronos which is a FUN theme in giving Cronos it’s bad guys and good guys using nFTs in an entertaining way in a classic theme of Cops and Robbers or in our case Cops and Crooks.
It is A Dynamic NFT Project Featuring a Unique Storyline + Comic Book Cop's N Crooks Theme for Entertainment and FUN :) Some of our Features include: NFT Staking - "Lock Your Crooks Up In the Prison Metaverse while you accrue CrooksGold", Weekly NFT Airdrops - "Just by Holding a Cro Crook NFT you receive multiple Partner NFT Airdrops each and every WEEK!, Play-To-Earn Game: "Have FUN Playing our FREE to Play Game where you can Gain More $cGOLD token to use for NFT Marketplace Purchases and to Enter Raffles! :) along with MUCH MUCH MORE! :)
</p>
</div>
</div>
<div class="row">
<div class="col-md-2 col-md-offset-5 text-center">
<iframe width="560" height="315" src="img\Police - 111961.mp4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="col-md-1 col-md-offset-5 text-center">
<iframe width="560" height="315" src="img\cops\Cro Cop - BADGES.mp4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center">
<a href="https://crobadge.shop/" class="get-started-btn">Mint a Crobadge for 66 $CRO! NOW!</a>
<a href="https://dgoatcrypto.gitbook.io/crooks-of-cronos-whitepaper/" class="try-btn">Read the Whitepaper</a>
<a href="https://discord.gg/RgyfqGnaGE" class="try-btn">Join Community!</a>
<a href="https://crokitchen.shop/" class="try-btn">View Your NFTs</a>
</div>
</div>
</div>
</section>
<section class="download-now" id="getstarted">
<div class="photos-01">
<div class="container container--large">
<div class="photos-01__images_row">
<span class="photos-01__person">
<div class="photos-01__image_box photos-01__link">
<img
loading="lazy"
src="img\cops\B3.png"
alt="48"
class="js-lightbox-single-image photos-01__image"
data-width="1000"
data-height="1000"
>
</div>
</span>
<span class="photos-01__person">
<div class="photos-01__image_box photos-01__link">
<img
loading="lazy"
src="img\cops\B3.png"
alt="228"
class="js-lightbox-single-image photos-01__image"
data-width="1000"
data-height="1000"
>
</div>
</span>
<span class="photos-01__person">
<div class="photos-01__image_box photos-01__link">
<img
loading="lazy"
src="img\cops\B3.png"
alt="276"
class="js-lightbox-single-image photos-01__image"
data-width="1000"
data-height="1000"
>
</div>
</span>
<span class="photos-01__person">
<div class="photos-01__image_box photos-01__link">
<img
loading="lazy"
src="img\cops\B3.png"
alt="380"
class="js-lightbox-single-image photos-01__image"
data-width="1000"
data-height="1000"
>
</div>
</span>
<span class="photos-01__person">
<div class="photos-01__image_box photos-01__link">
<img
loading="lazy"
src="img\cops\B3.png"
alt="431"
class="js-lightbox-single-image photos-01__image"
data-width="1000"
data-height="1000"
>
</div>
</span>
<span class="photos-01__person">
<div class="photos-01__image_box photos-01__link">
<img
loading="lazy"
src="img\cops\B3.png"
alt="434"
class="js-lightbox-single-image photos-01__image"
data-width="1000"
data-height="1000"
>
</div>
</span>
<span class="photos-01__person">
<div class="photos-01__image_box photos-01__link">
<img
loading="lazy"
src="img\cops\B3.png"
alt="577"
class="js-lightbox-single-image photos-01__image"
data-width="1000"
data-height="1000"
>
</div>
</span>
</div>
<div class="bottom_cta">
</div>
</div>
</div>
</div>
</div>
<div class="page-component__bg_image_box page-component__bg_image_box--dark-bg bg-black-color " id="text-02-853101" >
<div class="page-component__bg_overlay_box " %%>
</div>
<div class="page-component__wrapper" style="z-index: 18;padding-top:30px;padding-bottom:30px;">
</div>
</div>
</div>
</section>
<section class="testimonials" id="media">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="team-02">
<div class="container container--small">
<div class="title-box title-box--center">
<h2 class="heading " >TEAM BEHIND THE COPS</h2>
</div>
</div>
<div class="container container--xlarge">
<ul class="team-02__list">
<li class="team-02__person">
<div class="team-02__person_box">
<div class="team-02__person_img_box">
<img loading="lazy" class="team-02__person_img" src="img\cops\cpolice.png" alt="140">
</div>
<div class="team-02__person_name">The Cronos Cook</div>
<div class="team-02__person_tag">
<span class="tag color-main bg-light">
<span class="tag__text">
Founder
</span>
</span>
</div>
<div class="team-02__person_about content_box">
<p>"Bjg Bos"</p>
</div>
<div class="team-02__person_social">
<div class="social-buttons ">
<ul class="social-buttons__list">
<li class="social-buttons__item"><a
class="social-buttons__link social-buttons__link--twitter"
href="https://twitter.com/genogrand_eth" target="_blank"><img
loading="lazy"
class="social-buttons__icon"
alt="twitter icon"
src="https://dvzvtsvyecfyp.cloudfront.net/static/img/icons/social/black/twitter.svg"/></a></li><li class="social-buttons__item"><a
class="social-buttons__link social-buttons__link--instagram"
href="https://instagram.com/genogrand" target="_blank"><img
loading="lazy"
class="social-buttons__icon"
alt="instagram icon"
src="https://dvzvtsvyecfyp.cloudfront.net/static/img/icons/social/black/instagram.svg"/></a></li><li class="social-buttons__item"><a
class="social-buttons__link social-buttons__link--t"
href="https://t.me/genogrand" target="_blank"><img
loading="lazy"
class="social-buttons__icon"
alt="t icon"
src="https://dvzvtsvyecfyp.cloudfront.net/static/img/icons/social/black/telegram.svg"/></a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="team-02__person">
<div class="team-02__person_box">
<div class="team-02__person_img_box">
<img loading="lazy" class="team-02__person_img" src="img\cops\cpolice.png" alt="26">
</div>
<div class="team-02__person_name">floyd</div>
<div class="team-02__person_tag">
<span class="tag color-main bg-light">
<span class="tag__text">
marketing
</span>
</span>
</div>
<div class="team-02__person_about content_box">
<p></p>
</div>
<div class="team-02__person_social">
</div>
</div>
</li>
<li class="team-02__person">
<div class="team-02__person_box">
<div class="team-02__person_img_box">
<img loading="lazy" class="team-02__person_img" src="img\cops\avatar.png" alt="28">
</div>
<div class="team-02__person_name">SoftBuckets</div>
<div class="team-02__person_tag">
<span class="tag color-main bg-light">
<span class="tag__text">
Community Manager
</span>
</span>
</div>
<div class="team-02__person_about content_box">
<p></p>
</div>
<div class="team-02__person_social">
<div class="social-buttons ">
<ul class="social-buttons__list">
<li class="social-buttons__item"><a
class="social-buttons__link social-buttons__link--twitter"
href="https://twitter.com/faez_axiephenom" target="_blank"><img
loading="lazy"
class="social-buttons__icon"
alt="twitter icon"
src="https://dvzvtsvyecfyp.cloudfront.net/static/img/icons/social/black/twitter.svg"/></a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="team-02__person">
<div class="team-02__person_box">
<div class="team-02__person_img_box">
<img loading="lazy" class="team-02__person_img" src="img\cops\cpolice.png" alt="34">
</div>
<div class="team-02__person_name">Handsome</div>
<div class="team-02__person_tag">
<span class="tag color-main bg-light">
<span class="tag__text">
Art & Idea Management
</span>
</span>
</div>
<div class="team-02__person_about content_box">
<p></p>
</div>
<div class="team-02__person_social">
<div class="social-buttons ">
<ul class="social-buttons__list">
<li class="social-buttons__item"><a
class="social-buttons__link social-buttons__link--t"
href="https://opensea.io/collection/kinghandsome" target="_blank"><img
loading="lazy"
class="social-buttons__icon"
alt="t icon"
src="https://dvzvtsvyecfyp.cloudfront.net/static/img/icons/social/black/telegram.svg"/></a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="team-02__person">
<div class="team-02__person_box">
<div class="team-02__person_img_box">
<img loading="lazy" class="team-02__person_img" src="img\cops\cpolice.png" alt="34">
</div>
<div class="team-02__person_name">Mooyps</div>
<div class="team-02__person_tag">
<span class="tag color-main bg-light">
<span class="tag__text">
Promotions
</span>
</span>
</div>
<div class="team-02__person_about content_box">
<p></p>
</div>
<div class="team-02__person_social">
<div class="social-buttons ">
<ul class="social-buttons__list">
<li class="social-buttons__item"><a
class="social-buttons__link social-buttons__link--t"
href="https://twitter.com/NFTMooyps" target="_blank"><img
loading="lazy"
class="social-buttons__icon"
alt="t icon"
src="https://dvzvtsvyecfyp.cloudfront.net/static/img/icons/social/black/telegram.svg"/></a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="team-02__person">
<div class="team-02__person_box">
<div class="team-02__person_img_box">
<img loading="lazy" class="team-02__person_img" src="img\cops\cpolice.png" alt="34">
</div>
<div class="team-02__person_name">Smoke</div>
<div class="team-02__person_tag">
<span class="tag color-main bg-light">
<span class="tag__text">
Social Media
</span>
</span>
</div>
<div class="team-02__person_about content_box">
<p></p>
</div>
<div class="team-02__person_social">
<div class="social-buttons ">
<ul class="social-buttons__list">
<li class="social-buttons__item"><a
class="social-buttons__link social-buttons__link--t"
href="https://twitter.com/ScotlandArt1" target="_blank"><img
loading="lazy"
class="social-buttons__icon"
alt="t icon"
src="https://dvzvtsvyecfyp.cloudfront.net/static/img/icons/social/black/telegram.svg"/></a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="team-02__person">
<div class="team-02__person_box">
<div class="team-02__person_img_box">
<img loading="lazy" class="team-02__person_img" src="img\cops\cpolice.png" alt="34">
</div>
<div class="team-02__person_name">DAV</div>
<div class="team-02__person_tag">
<span class="tag color-main bg-light">
<span class="tag__text">
Sales/Promotions
</span>
</span>
</div>
<div class="team-02__person_about content_box">
<p></p>
</div>
<div class="team-02__person_social">
<div class="social-buttons ">
<ul class="social-buttons__list">
<li class="social-buttons__item"><a
class="social-buttons__link social-buttons__link--t"
href="https://twitter.com/DavCas87" target="_blank"><img
loading="lazy"
class="social-buttons__icon"
alt="t icon"
src="https://dvzvtsvyecfyp.cloudfront.net/static/img/icons/social/black/telegram.svg"/></a></li>
</ul>
</div>
</div>
</div>
</li>
<li class="team-02__person">
<div class="team-02__person_box">
<div class="team-02__person_img_box">
<img loading="lazy" class="team-02__person_img" src="img\cops\avatar.png" alt="38">
</div>
<div class="team-02__person_name">Bunny</div>
<div class="team-02__person_tag">
<span class="tag color-main bg-light">
<span class="tag__text">
Artist & GFX
</span>
</span>
</div>
<div class="team-02__person_about content_box">
<p></p>
</div>
<div class="team-02__person_social">
</div>
</div>
</li>
</ul>
<div class="bottom_cta">
</div>
</div>
</div>
</div>
</div>
<div class="page-component__bg_image_box page-component__bg_image_box--dark-bg bg-black-color " id="faq-01-175471" >
<div class="page-component__bg_overlay_box " %%>
</div>
</div>
</div>
</div>
</section>
<section class="features" id="features">
<div class="page-component__bg_image_box bg-accent-color " id="steps-01-71881" >
<div class="page-component__bg_overlay_box " %%>
</div>
<div class="page-component__wrapper" style="z-index: 15;padding-top:50px;padding-bottom:70px;">
<div class="steps-01">
<div class="container container--small">
<div class="title-box title-box--center">
<h2 class="heading " >ROADMAP</h2>
</div>
</div>
<div class="container">
<ul class="steps-01__list">
<li class="steps-01__item">
<div class="steps-01__number color-main">1</div>
<div class="steps-01__content">
<div class="steps-01__text_box">
<h2 class="steps-01__heading ">✅Youtube Channel Royalties</h2>
<div class="content_box ">
<div class="steps-01__text "><p>Royalties currently being distrubuted back to the NFT Community! Monthly Distributions of Rewards! 🔥</p>
<h2>✅Watch-To-Earn</h2>
<p> Passive Income, Watch-To-Earn! This would be a "First" integration of this kind with NFTs & Youtube and we look forward to providing exciting ways to utilize NFTs and Youtube Mechanics to incentivize subscribers and Holders. 🔥</p>
</div>
</div>
</div>
<div class="steps-01__img_box">
<img loading="lazy" src="https://i.imgur.com/J4OKRq7.png"
alt="Copy of flemsy footballs eth (14)"
data-width="1080"
data-height="1080"
class="steps-01__img js-lightbox-single-image "/>
<img loading="lazy" src="https://i.imgur.com/VA8knRd.png"
alt="Copy of flemsy footballs eth (14)"
data-width="1080"
data-height="1080"
class="steps-01__img js-lightbox-single-image "/>
</div>
</div>
</li>
<li class="steps-01__item">
<div class="steps-01__number color-main">2</div>
<div class="steps-01__content">
<div class="steps-01__text_box">
<h2 class="steps-01__heading ">✅Weekly Comics Drops</h2>
<div class="content_box ">
<div class="steps-01__text "><p>Comic Book Airdrops for Crook (Gen 0) & Cro Cop Holders.</p>
<h2>✅Monthly Airdrops</h2>
<p>Weekly Comic book Drops! :) We made a few NFTs to celebrate some holidays. #cincodemayo #4thofjuly. We'd love to donate the first two these to EbisusBay and @vvs with respect since they feature your symbols and then giveaway the remaining "Crooks De Mayo Holiday Animated NFT" to 1 lucky Winner!
</p>
<h2>✅NFT Staking</h2>
<p>Must Hold at Least 1 CRO COP NFTs. Rewards distributed out in $DONUTS.
Gamified Staking, Decentralized NFT Raffles, and More.</p>
</div>
</div>
</div>
<div class="steps-01__img_box">
<img loading="lazy" src="img\cops\policebadge.png"
alt="Copy of flemsy footballs eth (15)"
data-width="1080"
data-height="1080"
class="steps-01__img js-lightbox-single-image "/>
<img loading="lazy" src="https://i.imgur.com/OjVbJez.png"
alt="Copy of flemsy footballs eth (15)"
data-width="1080"
data-height="1080"
class="steps-01__img js-lightbox-single-image "/>
<img loading="lazy" src="https://i.imgur.com/Eys24TT.png"
alt="Copy of flemsy footballs eth (15)"
data-width="1080"
data-height="1080"
class="steps-01__img js-lightbox-single-image "/>
<img loading="lazy" src="https://i.imgur.com/l1j8CH8.png"
alt="Copy of flemsy footballs eth (15)"
data-width="1080"
data-height="1080"
class="steps-01__img js-lightbox-single-image "/>
</div>
</div>
</li>
<li class="steps-01__item">
<div class="steps-01__number color-main">2</div>
<div class="steps-01__content">
<div class="steps-01__text_box">
<h2 class="steps-01__heading ">✅Metaverse</h2>
<div class="content_box ">
<div class="steps-01__text "><p>We are building a Metaverse on Cronos to House Our Crooks! This experience will be Gamified and integrated with your NFTs. We currently have a sneak-Peek Gallery build with Mona. You can check it out using the link below:</p>
<h2>✅Merch</h2>
<p>We are building a Merchandise Store on Cronos for Our Holders! This shopping experience will be Gamified and integrated with your NFTs.</p>
<h2>✅Music</h2>
<p>Hosting daily Twitter Spaces and AMA's with Music(LoFi) To encourage good vibes every day and uplift our community and the Crofam. We always choose music with a high vibration to ensure that every one is receiving positive energy.</p>
</div>
</div>
</div>
<div class="steps-01__img_box">
<img loading="lazy" src="https://i.imgur.com/s1axpvU.png"
alt=""
data-width="1080"
data-height="1080"
class="steps-01__img js-lightbox-single-image "/>
</div>
</div>
</li>
<li class="steps-01__item">
<div class="steps-01__number color-main">3</div>
<div class="steps-01__content">
<div class="steps-01__text_box">
<h2 class="steps-01__heading ">🔜NFT Marketplace</h2>
<div class="content_box ">
<div class="steps-01__text "><p>Built with Moralis. Starting on Cronos and slowly integrating Multi-Chain Functionality! There are currently less than 5 Marketplaces on Cronos and we want to help the Ecosytem Grow and provide options for the Community! We will have listing and buying functionality implemented soon and then the initial website will go LIVE for you guys to LIST/EXCHANGE your NFTs.
Afterwards we will look to release our NEXT NFT Drops which will be used to provide liquidity into our Staking rewards token amongst other things involved wtih our DAO and Treasury.
</p>
<h2>🔜NFT Rarity Rankier (Crook NFTs)</h2>
<p>Built with Moralis. This is a tool for verifying the ranking of your NFT according to it's Traits similar to raritytools.io. We look to continously improve this tool as we look to enter the Cronos x Moralix Hackathon in August of 2022.</p>
<h2>🔜NFT Game 2D Platformer </h2>
<p>Currently in Beta and Built with Unity. This will be our first Play-To-Earn in our Gaming Ecosystem. It will feature NFT Wallet Integration, NFT Characters, Weekly Tournaments, $cGOLD Bonuses in-Game & MLore!</p>
</div>
</div>
</div>
<div class="steps-01__img_box">
<img loading="lazy" src="https://i.imgur.com/F2nloYD.png"
alt=""
data-width="1080"
data-height="1080"
class="steps-01__img js-lightbox-single-image "/>
<img loading="lazy" src="https://i.imgur.com/S6qVDGJ.png"
alt=""
data-width="1080"
data-height="1080"
class="steps-01__img js-lightbox-single-image "/>
<img loading="lazy" src="https://i.imgur.com/GpAveYM.png"
alt=""
data-width="1080"
data-height="1080"
class="steps-01__img js-lightbox-single-image "/>
<img loading="lazy" src="https://i.imgur.com/rwS3r4z.png"
alt=""
data-width="1080"
data-height="1080"
class="steps-01__img js-lightbox-single-image "/>
<img loading="lazy" src="https://i.imgur.com/r3AuCCZ.png"
alt=""
data-width="1080"
data-height="1080"
class="steps-01__img js-lightbox-single-image "/>
</div>
</div>
</li>
</ul>
<div class="steps-01__last_bubble">
</div>
<div class="bottom_cta">
</div>
</div>
</div>
</div>
</div>
</section>
<section class="design" id="design">
<div class="container">
<div class="row">
<div class="col-md-12">
<div id="secondSlider">
<style>
body{
background-color: rgb(255,255,255);
}
.layout{
width: 600px;
margin: auto;
}
.accordion{
padding: 10px;
margin-top: 10px;
margin-bottom: 10px;
background: rgb(255,215,0);
border-radius: 10px;
}
.accordion__question p{
margin: 5px;
padding: 0;
font-family: Verdana;
font-size: 20px;
}
.accordion__answer p{
margin: 5px;
padding: 10px;
font-size: large;
font-family: Verdana, Geneva, Tahoma, sans-serif;
color: rgb(255, 255, 255);
background: rgb(255,0,0);
border-radius: 10px;
}
.accordion:hover{
cursor: pointer;
}
.accordion__answer {
display: none;
}
.accordion.active .accordion__answer {
display: block;
}
</style>
</head>
<body>
<h2 style="color:red; text-align:center">Crooks Of Cronos F.A.Q. </h2>
<div class="layout">
<div class="accordion">
<div class="accordion__question">
<p>Is There Utility for CROOK NFTs?</p>
</div>
<div class="accordion__answer">
<p><b>*YES*</b><br>
About 44% of the Total Royalty Earnnings are to be paid to NFT holders/supporters of the channel. Each NFT Tier is rewarded a certain percentage from Secondary Royalty Sales as well as Youtube Channel Earnnings. <br>
This is done to provide as much value to holders as possible with more to come.<br>
The goal is to help others mid-long term. :)
<br><br>
<b>🔆INITIAL UTILITY🔆</b><br>
♨️Burn & Airdrops<br>
Unsold NFT's will be airdropped to holders/Staked(Locked Up) to increase value+scarcity.<br>
♻️By Minting a crook and Holding:<br>
- You receive 3-4 NFT Extra Special NFT Airdrops only available to Those Minted.<br>
<b>**STAKING**</b><br>
Staking will be available soon with CRODEX and also there will be 3D Metaverse Prison Cells for your Crooks when they have to "do some time."
<br><br>
<b>**PRISON METAVERSE ECONOMY**</b> <br>(Cronos County Rehabilitation Center)<br>
**Bartering between Crooks for different items(NFTs) while behind bars.
<br><br>
<b>LEGAL AWARENESS</b> <br>
- Educating on Federal Law and State Laws to keep our Community Informed.
"Ignorance of the law is no excuse."
<br><br>
<b>CRIME BLOG</b><br>
Community Blog<br>
Community Post Submissions<br>
Mostly Discussing Cyber Related Crimes concerning blockchain and crypto like the recent Axie Infinity Ronin Bridge Exploit.
<br><br>
<b>AIRDROPS</b><br>
Custom Crook NFTs<br>
Monthly Random Special Editions<br>
Holiday/Birthday Special Editions</p>
<br><br>
<b>ADVANCED UTILITY</b><br>
NFT Marketplace<br>
NFT Wallet App<br>
Cronos Ecosystem Bridge Supporting Platforms<br>
Cronos Classroom<br>