-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1381 lines (1277 loc) · 64.2 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
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 class="no-js" lang="en">
<!-- Mirrored from davis-html.netlify.app/index3 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 02 Dec 2024 14:07:32 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<!-- Meta Tags -->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Laralink">
<!-- Page Title -->
<title>Tonyfab - Personal Portfolio</title>
<!-- Favicon Icon -->
<link rel="icon" href="assets/img/favicon1.png" />
<!-- Stylesheets -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/fontawesome.css" />
<link rel="stylesheet" href="assets/css/slick.css" />
<link rel="stylesheet" href="assets/css/lightgallery.min.css" />
<link rel="stylesheet" href="assets/css/animate.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<script src="script.js"></script>
<style>
.fade-in {
opacity: 0;
transform: translateX(-30px);
transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.visible {
opacity: 1;
transform: translateX(0);
}
.hidden-container {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease-in-out;
}
.dropdown-item {
opacity: 0;
transform: translateY(-10px);
transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.dropdown-item.visible {
opacity: 1;
transform: translateY(0);
}
.popup {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
display: flex;
justify-content: center;
align-items: center;
}
.popup-content {
font-family: 'BryndanWrite';
background-color: white;
padding: 20px;
border-radius: 5px;
text-align: center;
transform: scale(0);
transform-origin: center;
transition: transform 0.3s ease, opacity 0.3s ease;
opacity: 0;
}
.popup-content.visible {
transform: scale(1);
opacity: 1;
}
.close-btn {
cursor: pointer;
float: right;
font-size: 20px;
}
.mx {
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
#link{
color: black;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
#link:hover {
text-decoration: none;
color: #696969;
}
/* Navigation */
nav ul {
display: flex;
list-style: none;
gap: 20px;
}
nav ul li a {
text-decoration: none;
color: #333;
font-size: 1rem;
}
.contact a {
text-decoration: none;
color: #000;
}
/* Hero Section */
.hero {
display: flex;
justify-content: space-between;
align-items: center;
padding: 4rem 2rem;
max-width: 1200px;
margin: 0 auto;
position: relative;
}
.hero-content {
max-width: 50%;
}
h2 {
color: #000000;
margin-bottom: 1rem;
}
h1 {
font-size: 3rem;
line-height: 1.2;
margin-bottom: 2rem;
font-family: 'BryndanWrite';
}
.highlight {
color: #000;
font-weight: normal;
}
.cta-button {
background-color: #000;
color: #fff;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 25px;
cursor: pointer;
font-size: 1rem;
}
.hero-image {
position: relative;
max-width: 50%;
padding-left: 20px;
}
.hero-image img {
width: 100%;
max-width: 400px;
border-radius: 50%;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.circular-bg {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 450px;
height: 450px;
background-color: #f8f9ff;
border-radius: 50%;
z-index: -1;
}
@font-face {
font-family: 'BrydanWrite';
src: url(assets/fonts/BryndanWrite.ttf);
font-style: normal;
font-weight: 100;
}
</style>
</head>
<body id="home">
<!-- Start Header Section -->
<header class="st-site-header st-style1 st-sticky-header">
<div class="st-main-header">
<div class="container" style="background-color: #e9eae5;">
<div class="st-main-header-in" style="background-color: #e9eae5;">
<div class="st-main-header-left">
<a class='st-site-branding' href='index.html'><img src="assets/img/file2.png" alt="Davis"></a>
</div>
<div class="st-main-header-right">
<div class="st-nav">
<ul class="st-nav-list st-onepage-nav">
<li><a id="link" href="#home" style=" font-family:BrydanWrite;" class="st-smooth-move">Home</a></li>
<li><a id="link" href="#about" style=" font-family:BrydanWrite;" class="st-smooth-move">About</a></li>
<li><a id="link" href="#Service" style=" font-family:BrydanWrite;" class="st-smooth-move">Service</a></li>
<li><a id="link" href="#Skills" style=" font-family:BrydanWrite;" class="st-smooth-move">Skills</a></li>
<li><a id="link" href="#Resume" style=" font-family:BrydanWrite;" class="st-smooth-move">Resume</a></li>
<li><a id="link" href="#portfolio" style=" font-family:BrydanWrite;" class="st-smooth-move">Works</a></li>
<li><a id="link" href="#Reference" style=" font-family:BrydanWrite;" class="st-smooth-move">Reference</a></li>
<li><a id="link" href="#contact" style=" font-family:BrydanWrite;" class="st-smooth-move">Contact</a></li>
</ul>
<!--div class="sp-phone">
<svg viewBox="0 0 513.64 513.64">
<g>
<g>
<path d="M499.66,376.96l-71.68-71.68c-25.6-25.6-69.12-15.359-79.36,17.92c-7.68,23.041-33.28,35.841-56.32,30.72c-51.2-12.8-120.32-79.36-133.12-133.12c-7.68-23.041,7.68-48.641,30.72-56.32c33.28-10.24,43.52-53.76,17.92-79.36l-71.68-71.68c-20.48-17.92-51.2-17.92-69.12,0l-48.64,48.64c-48.64,51.2,5.12,186.88,125.44,307.2c120.32,120.32,256,176.641,307.2,125.44l48.64-48.64C517.581,425.6,517.581,394.88,499.66,376.96z" />
</g>
</g>
</svg>
div class="sp-phone-no">+1 971 234 1508</!--div->
</-div-->
</div>
</div>
</div>
</div>
</div>
</header>
<!-- End Header Section -->
<!-- Start Hero Seciton -->
<section class="st-hero st-style2 st-bg st-dynamic-bg st-shake-version" data-src='assets/img/back1-.jpg'>
<div class="container">
<div class="st-hero-text">
<!--div class="st-autho"><img src="assets/img/section/avatar1-.png" alt=""></!--div-->
<h2 style="color:#e9eae5;background-color: blac;font-size: 40px; font-family:BrydanWrite; padding-top: 200px;">
TONY'S PORTFOLIO</h2>
<!--p style="color:#e9eae5;background-color: black; font-size:30px; font-family:BrydanWrite;" >He is a content writer, community manager, moderator, and project ambassador. <br> He delivers engaging content, fosters a thriving community, ensures smooth moderation, and represents projects with excellence.</!--p-->
<div class="st-hero-social-links">
<a href="https://t.me/Tony_infinityy" target="_blank" class="st-social-btn">
<i class="fab fa-telegram"></i>
</a>
<a href="https://x.com/anthonyihediwa1" target="_blank" class="st-social-btn">
<i class="fab fa-twitter"></i>
</a>
</div>
</div>
</div>
</section>
<!-- End Hero Seciton -->
<!-- Start About Section -->
<main id="about">
<div class="st-section-heading st-style1">
<h2 style="color:rgb(0, 0, 0); font-family:BrydanWrite; font-size:30px; padding-top: 100px;">About</h2>
</div>
<section class="hero">
<div class="hero-content">
<h2>Hey, I’m TONY</h2>
<h2 style="color:rgb(0, 0, 0); font-family:BrydanWrite; font-weight: lighter; font-size:30px" class="st-skill-subtitle" >A dedicated content creator, technical writer,
social media/community manager and ambassador</h2>
<a id="link" href="#contact">
<button class="st-btn st-style1 st-color2" class="readmore-btn"class="cta-button">Get in touch</button> </a>
</div>
<div class="hero-image">
<div class="circular-bg"></div>
<img src="assets/img/avatar1.png" alt="John Carter on phone">
</div>
</section>
</main>
<!-- End About Section -->
<!-- Start Service Seciton -->
<!-- Start Service Section -->
<section>
<section id="Service" class="st-about-wrap fade-in">
<div class="st-height-b100 st-height-lg-b80"></div>
<div class="container">
<div class="st-section-heading st-style1">
<h2 style="color:rgb(0, 0, 0); font-family:BrydanWrite; font-size:30px">Services</h2>
</div>
<div class="st-height-b25 st-height-lg-b25"></div>
</div>
<!-- Iconbox Container -->
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="st-iconbox st-style1">
<div class="st-iconbox-icon">
<svg viewBox="0 0 512 512">
<g>
<path d="m336 144a8 8 0 0 0 -8 8v104a8 8 0 0 0 16 0v-104a8 8 0 0 0 -8-8z" />
<path d="m336 272a8 8 0 0 0 -8 8v8a8 8 0 0 0 16 0v-8a8 8 0 0 0 -8-8z" />
<path
d="m496 24h-480a8 8 0 0 0 -8 8v352a8 8 0 0 0 8 8h288v64a32 32 0 0 0 64 0v-64h48a8.008 8.008 0 0 0 5.66-2.34l80-80a8.008 8.008 0 0 0 2.34-5.66v-272a8 8 0 0 0 -8-8zm-144 432a16 16 0 0 1 -32 0v-16h32zm0-32h-32v-8h32zm0-24h-32v-264h32zm0-280h-32v-6.11l.94-1.89h30.12l.94 1.89zm-23.06-24 7.06-14.11 7.06 14.11zm95.06 268.69v-52.69h52.69zm64-68.69h-72a8 8 0 0 0 -8 8v72h-40v-264a8.081 8.081 0 0 0 -.84-3.58l-24-48a8.009 8.009 0 0 0 -14.32 0l-24 48a8.081 8.081 0 0 0 -.84 3.58v264h-280v-336h464z" />
<path d="m48 72h72a8 8 0 0 0 0-16h-72a8 8 0 0 0 0 16z" />
<path d="m80 88a8 8 0 0 0 -8-8h-24a8 8 0 0 0 0 16h24a8 8 0 0 0 8-8z" />
<path
d="m288 88a104.118 104.118 0 0 0 -104 104 8 8 0 0 0 16 0 88.1 88.1 0 0 1 88-88 8 8 0 0 0 0-16z" />
<path
d="m240 184a8 8 0 0 0 -8 8 80.091 80.091 0 0 1 -80 80 8 8 0 0 0 0 16 96.108 96.108 0 0 0 96-96 8 8 0 0 0 -8-8z" />
<path
d="m456 192a8 8 0 0 0 16 0 80.091 80.091 0 0 0 -80-80 8 8 0 0 0 0 16 64.072 64.072 0 0 1 64 64z" />
<path
d="m168 216a48 48 0 1 0 -48 48 48.053 48.053 0 0 0 48-48zm-48 32a32 32 0 1 1 32-32 32.036 32.036 0 0 1 -32 32z" />
<path
d="m264 288a24 24 0 1 0 24 24 24.028 24.028 0 0 0 -24-24zm0 32a8 8 0 1 1 8-8 8.009 8.009 0 0 1 -8 8z" />
<path
d="m432 112a24 24 0 1 0 -24-24 24.028 24.028 0 0 0 24 24zm0-32a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z" />
</g>
<!-- SVG content -->
</svg>
</div>
<h2 style="color:#e9eae5;font-family:BrydanWrite; font-size:30px" class="st-iconbox-title">
Social Media Manager
</h2>
<button class="st-btn st-style1 st-color2" id="readMoreBtn1" class="readmore-btn">Read More</button>
</div>
<div class="st-height-b30 st-height-lg-b30"></div>
</div>
<div class="col-lg-4 col-md-6">
<div class="st-iconbox st-style1">
<div class="st-iconbox-icon">
<svg viewBox="0 0 64 64">
<path
d="m62.618 45-5-10h-1.618v-34h-14v34h-19v-17.217l-4.676-10.286c-.413-.909-1.325-1.497-2.324-1.497s-1.911.588-2.324 1.496l-4.676 10.287v17.217h-2.618l-5 10h5.618v18h50v-18zm-18.618-14h6v-2h-6v-2h4v-2h-4v-2h6v-2h-6v-2h4v-2h-4v-2h6v-2h-6v-2h4v-2h-4v-2h6v-2h-6v-2h10v32h-10zm12.382 6 3 6h-21.764l-3-6zm-39.387-2v-15.132l2.002 1.333 2.003-1.334v15.133zm3.743-17.361-1.741 1.159-3.002-2.001-2.998 2-1.735-1.158 1.654-3.639h6.167zm-5.242-9.316c.18-.393.828-.394 1.008.001l1.67 3.676h-4.349zm-4.496 11.547 1.997 1.333 1.998-1.333v15.13h-3.995zm-3.382 17.13h21.764l-3 6h-21.764zm1.382 8h18.618l3.382-6.764v22.764h-22zm46 16h-22v-22.764l3.382 6.764h18.618z" />
<path d="m19 57h2v2h-2z" />
<path d="m11 57h2v2h-2z" />
<path d="m15 57h2v2h-2z" />
<path d="m11 53h10v2h-10z" />
<path
d="m28 9.657c0-1.465 1.192-2.657 2.657-2.657h.686c1.465 0 2.657 1.192 2.657 2.657 0 .709-.276 1.376-.778 1.879l-5.222 5.222v8.242h6v-5.758l3.464-3.464c1.636-1.635 2.536-3.809 2.536-6.121 0-4.773-3.884-8.657-8.657-8.657h-.686c-4.773 0-8.657 3.884-8.657 8.657v2.343h6zm-2 0v.343h-2v-.343c0-3.671 2.986-6.657 6.657-6.657h.686c3.671 0 6.657 2.986 6.657 6.657 0 1.777-.692 3.449-1.95 4.707l-4.05 4.05v4.586h-2v-5.414l4.637-4.636c.879-.881 1.363-2.051 1.363-3.293 0-2.568-2.089-4.657-4.657-4.657h-.686c-2.568 0-4.657 2.089-4.657 4.657z" />
<path
d="m28 30c0 1.654 1.346 3 3 3s3-1.346 3-3-1.346-3-3-3-3 1.346-3 3zm4 0c0 .552-.448 1-1 1s-1-.448-1-1 .448-1 1-1 1 .448 1 1z" />
</svg>
</div>
<h2 style="color:#e9eae5;font-family:BrydanWrite; font-size:30px" class="st-iconbox-title">
Community Manager
</h2>
<button class="st-btn st-style1 st-color2" id="readMoreBtn2" class="readmore-btn">Read More</button>
</div>
<div class="st-height-b30 st-height-lg-b30"></div>
</div>
<div class="col-lg-4 col-md-6">
<div class="st-iconbox st-style1">
<div class="st-iconbox-icon">
<svg viewBox="0 0 512 512">
<g>
<g>
<path d="M360,104h-80c-4.418,0-8,3.582-8,8v80c0,4.418,3.582,8,8,8h80c4.418,0,8-3.582,8-8v-80C368,107.582,364.418,104,360,104z
M288,184v-52.693L340.693,184H288z M352,172.68L299.32,120H352V172.68z" />
</g>
</g>
<g>
<g>
<path d="M360,216h-80c-4.418,0-8,3.582-8,8v80c0,4.418,3.582,8,8,8h80c4.418,0,8-3.582,8-8v-80C368,219.582,364.418,216,360,216z
M288,296v-52.685L340.685,296H288z M352,284.688L299.312,232H352V284.688z" />
</g>
</g>
<g>
<g>
<rect x="272" y="328" width="64" height="16" />
</g>
</g>
<g>
<g>
<rect x="352" y="328" width="16" height="16" />
</g>
</g>
<g>
<g>
<rect x="272" y="360" width="96" height="16" />
</g>
</g>
<g>
<g>
<rect x="272" y="392" width="96" height="16" />
</g>
</g>
<g>
<g>
<rect x="136" y="184" width="80" height="16" />
</g>
</g>
<g>
<g>
<rect x="136" y="248" width="80" height="16" />
</g>
</g>
<g>
<g>
<rect x="136" y="312" width="80" height="16" />
</g>
</g>
<g>
<g>
<path d="M464,56c-4.418,0-8,3.582-8,8v32h-48V16c0-8.837-7.163-16-16-16H120c-8.837,0-16,7.163-16,16v80H56V64
c0-4.418-3.582-8-8-8c-0.48,0-48,0.728-48,64v312c0,30.504,30.4,44.632,46.4,47.84c0.526,0.111,1.062,0.165,1.6,0.16h56v16
c0,8.837,7.163,16,16,16h272c8.837,0,16-7.163,16-16v-16h56c0.538,0.005,1.074-0.049,1.6-0.16c16-3.208,46.4-17.336,46.4-47.84
V120C512,56.728,464.48,56,464,56z M16,120c0-32.64,14.4-43.088,24-46.4v312.232c-8.773,2.722-16.927,7.139-24,13V120z M104,464
H48.88C44.104,462.856,16,455.128,16,432c0-24.96,32.248-31.88,33.6-32.16c3.725-0.76,6.401-4.038,6.4-7.84V112h48V464z M120,88
h92.12L120,145.543V88z M232,94.447V152h-92.136L232,94.447z M120,168h112v48H120V168z M120,232h112v48H120V232z M120,296h112v48
H120V296z M120,360h94.186L120,424.724V360z M232,367.172V432h-94.337L232,367.172z M392,496H120v-48h272V496z M392,432H248V88
h144V432z M392,72H120V16h272V72z M463.136,464H408V112h48v280c-0.001,3.802,2.675,7.08,6.4,7.84
c0.368,0.072,33.6,7.008,33.6,32.16C496,455.256,468.072,462.84,463.136,464z M496,398.832c-7.073-5.861-15.227-10.278-24-13V73.6
c9.496,3.32,24,13.776,24,46.4V398.832z" />
</g>
</g>
<g>
<g>
<rect x="200" y="40" width="64" height="16" />
</g>
</g>
<g>
<g>
<rect x="280" y="40" width="16" height="16" />
</g>
</g>
<g>
<g>
<rect x="312" y="40" width="16" height="16" />
</g>
</g>
</svg>
</div>
<h2 style="color:#e9eae5;font-family:BrydanWrite; font-size:30px" class="st-iconbox-title">
Community Moderator
</h2>
<button class="st-btn st-style1 st-color2" id="readMoreBtn3" class="readmore-btn">Read More</button>
</div>
<div class="st-height-b30 st-height-lg-b30"></div>
</div>
<div class="col-lg-12 col-md-6">
<div class="st-iconbox st-style1">
<div class="st-iconbox-icon">
<svg viewBox="0 0 64 64">
<path
d="m62.618 45-5-10h-1.618v-34h-14v34h-19v-17.217l-4.676-10.286c-.413-.909-1.325-1.497-2.324-1.497s-1.911.588-2.324 1.496l-4.676 10.287v17.217h-2.618l-5 10h5.618v18h50v-18zm-18.618-14h6v-2h-6v-2h4v-2h-4v-2h6v-2h-6v-2h4v-2h-4v-2h6v-2h-6v-2h4v-2h-4v-2h6v-2h-6v-2h10v32h-10zm12.382 6 3 6h-21.764l-3-6zm-39.387-2v-15.132l2.002 1.333 2.003-1.334v15.133zm3.743-17.361-1.741 1.159-3.002-2.001-2.998 2-1.735-1.158 1.654-3.639h6.167zm-5.242-9.316c.18-.393.828-.394 1.008.001l1.67 3.676h-4.349zm-4.496 11.547 1.997 1.333 1.998-1.333v15.13h-3.995zm-3.382 17.13h21.764l-3 6h-21.764zm1.382 8h18.618l3.382-6.764v22.764h-22zm46 16h-22v-22.764l3.382 6.764h18.618z" />
<path d="m19 57h2v2h-2z" />
<path d="m11 57h2v2h-2z" />
<path d="m15 57h2v2h-2z" />
<path d="m11 53h10v2h-10z" />
<path
d="m28 9.657c0-1.465 1.192-2.657 2.657-2.657h.686c1.465 0 2.657 1.192 2.657 2.657 0 .709-.276 1.376-.778 1.879l-5.222 5.222v8.242h6v-5.758l3.464-3.464c1.636-1.635 2.536-3.809 2.536-6.121 0-4.773-3.884-8.657-8.657-8.657h-.686c-4.773 0-8.657 3.884-8.657 8.657v2.343h6zm-2 0v.343h-2v-.343c0-3.671 2.986-6.657 6.657-6.657h.686c3.671 0 6.657 2.986 6.657 6.657 0 1.777-.692 3.449-1.95 4.707l-4.05 4.05v4.586h-2v-5.414l4.637-4.636c.879-.881 1.363-2.051 1.363-3.293 0-2.568-2.089-4.657-4.657-4.657h-.686c-2.568 0-4.657 2.089-4.657 4.657z" />
<path
d="m28 30c0 1.654 1.346 3 3 3s3-1.346 3-3-1.346-3-3-3-3 1.346-3 3zm4 0c0 .552-.448 1-1 1s-1-.448-1-1 .448-1 1-1 1 .448 1 1z" />
</svg>
</div>
<h2 style="color:#e9eae5;font-family:BrydanWrite; font-size:30px" class="st-iconbox-title">
Project Ambassador
</h2>
<button class="st-btn st-style1 st-color2" id="readMoreBtn4" class="readmore-btn">Read More</button>
</div>
<div class="st-height-b30 st-height-lg-b30"></div>
</div>
</div>
</div>
<div class="st-height-b100 st-height-lg-b80"></div>
</section>
<!-- Popup Structure -->
<div id="popup" class="popup" style="display: none;">
<div class="popup-content">
<span class="close-btn">×</span>
<div id="popupText" style="color:#070707;font-family:BrydanWrite; font-size:20px"></div>
</div>
</div>
</section>
<script>
document.addEventListener("DOMContentLoaded", function () {
const popup = document.getElementById("popup");
const popupText = document.getElementById("popupText");
const closeBtn = document.querySelector(".close-btn");
const responsibilities = [
" Developed and executed social media strategies to increase brand visibility and reach.<br> - Created, scheduled, and managed content across multiple platforms.<br> - Analyzed metrics to assess performance and optimize future campaigns.<br> - Engaged with followers to build strong relationships and enhance brand loyalty.",
" Managed and nurtured online communities to enhance user engagement.<br> - Created and implemented strategies to grow community presence and participation.<br> - Served as the primary point of contact between the brand and its audience.<br> - Organized events, campaigns, and activities to foster community bonding.",
" Monitored community interactions to ensure compliance with rules and guidelines.<br> - Resolved conflicts and maintained a positive and inclusive environment.<br> - Answered user queries and escalated issues to the appropriate channels when necessary.<br> - Facilitated discussions to keep the community engaged and active.",
" Represented the brand professionally across various platforms and events.<br> - Promoted products, services, and initiatives to target audiences.<br> - Provided feedback to the team to improve user experiences and offerings.<br> - Built awareness and trust by engaging with potential and existing users."
];
for (let i = 1; i <= 4; i++) {
const button = document.getElementById(`readMoreBtn${i}`);
button.addEventListener("click", function () {
popupText.innerHTML = responsibilities[i - 1]; // Set the text for the popup
popup.style.display = "flex"; // Show the popup
setTimeout(() => {
popup.querySelector('.popup-content').classList.add('visible'); // Add visible class for zoom effect
}, 10); // Small timeout to allow the display to change before adding the class
});
}
closeBtn.addEventListener("click", function () {
const popupContent = popup.querySelector('.popup-content');
popupContent.classList.remove('visible'); // Remove zoom effect
setTimeout(() => {
popup.style.display = "none"; // Hide the popup after the animation
}, 300); // Match the duration of the CSS transition
});
// Close the popup when clicking outside of the content
popup.addEventListener("click", function (event) {
if (event.target === popup) {
closeBtn.click(); // Trigger the close button click
}
});
});
</script>
<!-- End Service Seciton -->
<!-- Start Skill Seciton -->
<section id="Skills" class="st-dark-bg fade-in">
<div class="st-height-b100 st-height-lg-b80"></div>
<div class="container">
<div class="st-section-heading st-style1">
<h2 style="color:rgb(0, 0, 0); font-family:BrydanWrite; font-size:30px ">My skills</h2>
<!--h4 class="st-section-heading-title">MY SKILLS</!--h4>
<h2-- class="st-section-heading-subtitle">MY SKILLS</h2-->
</div>
<div class="st-height-b25 st-height-lg-b25"></div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="st-skill-wrap">
<div class="st-skill-heading">
<h2 class="st-skill-title" style="color:rgb(0, 0, 0); font-family:BrydanWrite; font-size:30px"></h2>
<div style="color:rgb(0, 0, 0); font-family:BrydanWrite; font-size:20px" class="st-skill-subtitle">With a
strong background in content creation, technical writing, and community management,I
have contributed significantly to various Web3 projects,
including writing over 25 articles and blog posts,
crafting more than 40 Twitter threads and short tweets,
and producing detailed onboarding documentation and project documents.<br><br style="color:rgb(0, 0, 0); font-family:BrydanWrite; font-size:20px">My expertise extends to moderating large-scale communities with 150k+ users, where i have generated innovative ideas to enhance community engagement, written NFT-themed news articles with weekly digests, and led server activities like games and debriefing sessions. Additionally, my leadership in assisting moderation teams and solving complex challenges showcases my ability to foster collaboration, improve workflow, and deliver high-quality outcomes.
</div>
</div><!-- .st-skill-heading -->
</div>
</div>
<!-- Progressbar -->
<div class="col-lg-6">
<div class="st-height-b0 st-height-lg-b30"></div>
<div class="st-progressbar-wrap">
<div class="st-single-progressbar">
<div class="st-progressbar-heading">
<h3 class="st-progressbar-title">Community Management</h3>
<div class="st-progressbar-percentage wow fadeInLeft" data-wow-duration="1.5s"
data-wow-delay="0.5s">70%</div>
</div>
<div class="st-progressbar" data-progress="70">
<div class="st-progressbar-in wow fadeInLeft"></div>
</div>
</div><!-- .st-single-progressbar -->
<div class="st-height-b30 st-height-lg-b20"></div>
<div class="st-single-progressbar">
<div class="st-progressbar-heading">
<h3 class="st-progressbar-title">Technical/Content writing
</h3>
<div class="st-progressbar-percentage wow fadeInLeft" data-wow-duration="1.5s"
data-wow-delay="0.5s">80%</div>
</div>
<div class="st-progressbar" data-progress="80">
<div class="st-progressbar-in wow fadeInLeft"></div>
</div>
</div><!-- .st-single-progressbar -->
<div class="st-height-b30 st-height-lg-b20"></div>
<div class="st-single-progressbar">
<div class="st-progressbar-heading">
<h3 class="st-progressbar-title">Teamwork</h3>
<div class="st-progressbar-percentage wow fadeInLeft" data-wow-duration="1.5s"
data-wow-delay="0.5s">90%</div>
</div>
<div class="st-progressbar" data-progress="90">
<div class="st-progressbar-in wow fadeInLeft"></div>
</div>
</div><!-- .st-single-progressbar -->
<div class="st-height-b30 st-height-lg-b20"></div>
<div class="st-single-progressbar">
<div class="st-progressbar-heading">
<h3 class="st-progressbar-title">Time Management</h3>
<div class="st-progressbar-percentage wow fadeInLeft" data-wow-duration="1.5s"
data-wow-delay="0.5s">80%</div>
</div>
<div class="st-progressbar" data-progress="80">
<div class="st-progressbar-in wow fadeInLeft"></div>
</div>
</div><!-- .st-single-progressbar -->
<div class="st-height-b30 st-height-lg-b20"></div>
<div class="st-single-progressbar">
<div class="st-progressbar-heading">
<h3 class="st-progressbar-title">Leadership</h3>
<div class="st-progressbar-percentage wow fadeInLeft" data-wow-duration="1.5s"
data-wow-delay="0.5s">80%</div>
</div>
<div class="st-progressbar" data-progress="80">
<div class="st-progressbar-in wow fadeInLeft"></div>
</div>
</div><!-- .st-single-progressbar -->
<div class="st-height-b30 st-height-lg-b20"></div>
<div class="st-single-progressbar">
<div class="st-progressbar-heading">
<h3 class="st-progressbar-title">Critical Thinking</h3>
<div class="st-progressbar-percentage wow fadeInLeft" data-wow-duration="1.5s"
data-wow-delay="0.5s">80%</div>
</div>
<div class="st-progressbar" data-progress="80">
<div class="st-progressbar-in wow fadeInLeft"></div>
</div>
</div><!-- .st-single-progressbar -->
<div class="st-height-b30 st-height-lg-b20"></div>
<div class="st-single-progressbar">
<div class="st-progressbar-heading">
<h3 class="st-progressbar-title">Effective Communication</h3>
<div class="st-progressbar-percentage wow fadeInLeft" data-wow-duration="1.5s"
data-wow-delay="0.5s">90%</div>
</div>
<div class="st-progressbar" data-progress="90">
<div class="st-progressbar-in wow fadeInLeft"></div>
</div>
</div><!-- .st-single-progressbar -->
<div class="st-height-b30 st-height-lg-b20"></div>
<div class="st-single-progressbar">
<div class="st-progressbar-heading">
<h3 class="st-progressbar-title">Coaching</h3>
<div class="st-progressbar-percentage wow fadeInLeft" data-wow-duration="1.5s"
data-wow-delay="0.5s">70%</div>
</div>
<div class="st-progressbar" data-progress="70">
<div class="st-progressbar-in wow fadeInLeft"></div>
</div>
</div><!-- .st-single-progressbar -->
</div>
</div>
</div>
</div>
</section>
<!-- End Skill Seciton -->
<!-- Start Resume Seciton -->
<section id="Resume" class="st-dark-bg fade-in">
<div class="st-height-b100 st-height-lg-b80"></div>
<div class="container">
<div class="st-section-heading st-style1">
<h2 style="color:rgb(0, 0, 0); font-family:BrydanWrite; font-size:30px">Resume</h2>
</div>
<div class="st-height-b25 st-height-lg-b25"></div>
</div>
<div class="container">
<div class="row">
<!-- Experience -->
<div class="col-lg-6">
<div class="st-resume-wrap">
<div class="st-resume-heading">
<img src="assets/img/icon/resume-icon1.png" alt="resume-icon">
<h2 style="color: black; font-family:BrydanWrite; font-size:50px" class="st-resume-heading-title">
Experience</h2>
</div>
<div class="st-height-b50 st-height-lg-b30"></div>
<div id="experience-container">
<!-- PAGE DAO -->
<div class="st-resume-timeline">
<h3 style="color: black; font-family:BrydanWrite;font-size:25px" class="st-resume-timeline-title">PAGE DAO</h3>
<div style="color: black; font-family:BrydanWrite;" class="st-resume-timeline-duration">Content Writer</div>
<h4 class="st-resume-timeline-subtitle">2022 - 2023</h4>
<div class="st-resume-timeline-text">
<p style="color: black; font-family:BrydanWrite; font-size:17px">Contributed to writing 20+ articles and blog posts.<br>
Contributed to writing 40+ Twitter threads/short tweets.<br>
Contributed to writing at least 2 Project docs.</p>
</div>
</div>
<!-- Toggle Hidden Content -->
<div id="more-experience" style="display: none;">
<!-- Quest Chains -->
<div class="st-height-b50 st-height-lg-b30"></div>
<div class="st-resume-timeline">
<h3 style="color: black; font-family:BrydanWrite;font-size:25px" class="st-resume-timeline-title">Quest Chains</h3>
<div style="color: black; font-family:BrydanWrite;" class="st-resume-timeline-duration">Technical/
Content Writer</div>
<h4 class="st-resume-timeline-subtitle">2023 - present</h4>
<div style="color: black; font-family:BrydanWrite;font-size:17px" class="st-resume-timeline-text">
<p>Wrote the project Onboarding Documentation.<br> Wrote more than 5+ articles and blog posts.<br>
Contributed to writing tweet threads/short tweets.</p>
</div>
</div>
<!-- Oasis Gallery -->
<div class="st-height-b50 st-height-lg-b30"></div>
<div class="st-resume-timeline">
<h3 style="color: black; font-family:BrydanWrite;font-size:25px" class="st-resume-timeline-title">Oasis Gallery</h3>
<div style="color: black; font-family:BrydanWrite;" class="st-resume-timeline-duration">Senior Moderator</div>
<h4 class="st-resume-timeline-subtitle">2023-2024</h4>
<div style="color: black; font-family:BrydanWrite;font-size:17px" class="st-resume-timeline-text">
<p>Assisted in moderating over 150k users in the discord server.<br><br>
Generated ideas and suggestions for developing and improving the community.<br><br>
Writing NFT-themed news articles for posting to a special news channel.<br>
Produced at least 3 NFT news digest posts every week.<br><br>
Assisted the community team leader lead a team of moderators.<br><br>
Solving difficult cases and sorting out problems with the moderation team to improve the quality of work.<br><br>
Hosting server activities, such as games with bots and debriefing.</p>
</div>
</div>
</div>
<br>
<button id="toggleExperience" class="st-btn st-style1 st-color2" style="background-color: black; color: #e9eae5;">Read More</button>
</div>
</div>
</div>
<!-- Education -->
<div class="col-lg-6">
<div class="st-height-b0 st-height-lg-b50"></div>
<div class="st-resume-wrap">
<div class="st-resume-heading">
<img src="assets/img/icon/resume-icon2.png" alt="resume-icon">
<h2 style="color: black; font-family:BrydanWrite;font-size:50px" class="st-resume-heading-title">Education</h2>
</div>
<div class="st-height-b50 st-height-lg-b30"></div>
<div class="st-resume-timeline-wrap">
<div class="st-resume-timeline">
<h3 style="color: black; font-family:BrydanWrite;font-size:25px" class="st-resume-timeline-title">Top class</h3>
<div style="color: black; font-family:BrydanWrite;" class="st-resume-timeline-duration">2010 - 2016</div>
<h4 style="color: black; font-family:BrydanWrite;font-size:20px" class="st-resume-timeline-subtitle">High school</h4>
<div class="st-resume-timeline-text">
<p><br></p>
</div>
</div>
<div class="st-height-b50 st-height-lg-b30"></div>
<div class="st-resume-timeline">
<h3 style="color: black; font-family:BrydanWrite;font-size:25px" class="st-resume-timeline-title">Bachelor of Computer Science</h3>
<div style="color: black; font-family:BrydanWrite;" class="st-resume-timeline-duration">2010 - 2014</div>
<h4 class="st-resume-timeline-subtitle">NNAMDI AZIKIWE UNIVERSITY</h4>
<div style="color: black; font-family:BrydanWrite;font-size:20px" class="st-resume-timeline-text">
<p>Bachelor of Engineering in Mechanical Engineering<br> GPA: 3.5</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="st-height-b100 st-height-lg-b80"></div>
<div class="col-lg-12 text-center">
<div class="st-portfolio-btn">
<h2>See more in Dework Profile</h2>
<a href="https://app.dework.xyz/profile/TONY" target="_blank" style="background-color: black; color: #e9eae5;" class="st-btn st-style1 st-color2">Dework Profile</a>
</div>
</div>
</section>
<script>
document.getElementById('toggleExperience').addEventListener('click', function () {
const moreExperience = document.getElementById('more-experience');
const experienceContainers = moreExperience.querySelectorAll('.st-resume-timeline');
if (moreExperience.style.display === 'none' || moreExperience.style.display === '') {
// Show the section with sequential animation
moreExperience.style.display = 'block';
moreExperience.style.maxHeight = '0';
moreExperience.style.overflow = 'hidden';
moreExperience.style.transition = 'max-height 0.5s ease-in-out';
// Animate each experience item sequentially
experienceContainers.forEach((container, index) => {
container.style.opacity = '0';
container.style.transform = 'translateY(20px)';
container.style.transition = 'opacity 0.5s ease, transform 0.5s ease';
setTimeout(() => {
container.style.opacity = '1';
container.style.transform = 'translateY(0)';
}, index * 200); // Stagger the animation
});
// Calculate and set max-height
setTimeout(() => {
const totalHeight = Array.from(experienceContainers).reduce((sum, container) => sum + container.offsetHeight + 50, 0);
moreExperience.style.maxHeight = `${totalHeight}px`;
}, 10);
this.innerText = 'Show Less';
} else {
// Hide the section
moreExperience.style.maxHeight = '0';
// Fade out containers in reverse order
Array.from(experienceContainers).reverse().forEach((container, index) => {
setTimeout(() => {
container.style.opacity = '0';
container.style.transform = 'translateY(20px)';
}, index * 200);
});
// Completely hide after animation
setTimeout(() => {
moreExperience.style.display = 'none';
experienceContainers.forEach(container => {
container.style.opacity = '';
container.style.transform = '';
});
}, experienceContainers.length * 200 + 500);
this.innerText = 'Read More';
}
});
// Add some additional CSS to smooth out the animation
const style = document.createElement('style');
style.textContent = `
#more-experience .st-resume-timeline {
transition: opacity 0.5s ease, transform 0.5s ease;
}
`;
document.head.appendChild(style);
</script>
<!--End Resume Seciton -->
<!-- Start Portfolio Seciton -->
<section id="portfolio" class="fade-in">
<div class="st-height-b100 st-height-lg-b80"></div>
<div class="container">
<div class="st-section-heading st-style1">
<h2 style="color:rgb(0, 0, 0); font-family:BrydanWrite; font-size:30px " >My works</h2>
<!--h4 class="st-section-heading-title">PORTFOLIOS</!--h4>
<h2-- class="st-section-heading-subtitle">PORTFOLIOS</h2-->
</div>
<div class="st-height-b25 st-height-lg-b25"></div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="st-portfolio-single st-style1 st-lightgallery">
<div class="st-portfolio-item">
<a href="assets/img/portfolio/tes.jpg" class="st-portfolio st-zoom st-lightbox-item">
<div class="st-portfolio-img st-zoom-in">
<img src="assets/img/portfolio/work1.jpg" alt="portfolio">
</div>
<!--div class="st-portfolio-item-hover">
<i class="fas fa-plus-circle"></i>
<h5>Product Design</h5>
<p>Design / Marketing</p>
</!--div-->
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="st-portfolio-single st-style1 st-lightgallery">
<div class="st-portfolio-item">
<a href="assets/img/portfolio/tes2.jpg" class="st-portfolio st-zoom st-lightbox-item">
<div class="st-portfolio-img st-zoom-in">
<img src="assets/img/portfolio/work2.jpg" alt="portfolio">
</div>
<!--div class="st-portfolio-item-hover">
<i class="fas fa-plus-circle"></i>
<h5>Product Design</h5>
<p>Design / Marketing</p>
</!--div-->
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="st-portfolio-single st-style1 st-lightgallery">
<div class="st-portfolio-item">
<a href="assets/img/portfolio/tes3.jpg" class="st-portfolio st-zoom st-lightbox-item">
<div class="st-portfolio-img st-zoom-in">
<img src="assets/img/portfolio/work3.jpg" alt="portfolio">
</div>
<!--div class="st-portfolio-item-hover">
<i class="fas fa-plus-circle"></i>
<h5>Product Design</h5>
<p>Design / Marketing</p>
</!--div-->
</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="st-portfolio-single st-style1 st-lightgallery">
<div class="st-portfolio-item">
<div class="st-portfolio-img st-zoom-in">
<video width="350" height="310" controls>
<source src="assets/img/Gra1.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="st-portfolio-single st-style1 st-lightgallery">
<div class="st-portfolio-item">
<div class="st-portfolio-img st-zoom-in">
<video width="350" height="310" controls>
<source src="assets/img/gra2.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="st-portfolio-single st-style1 st-lightgallery">
<div class="st-portfolio-item">
<div class="st-portfolio-img st-zoom-in">
<video width="350" height="310" controls>
<source src="assets/img/gra3.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div>
<div class="col-lg-12 text-center">
<div class="st-portfolio-btn">
<a href="https://x.com/anthonyihediwa1/highlights" target="_blank" class="st-btn st-style1 st-color2">Load More</a>
</div>
</div>
</div>
</div>
<div class="st-height-b100 st-height-lg-b80"></div>
</section>
<!-- End Portfolio Seciton -->
<!-- Start Review Seciton -->
<section id="Reference" class="fade-in">
<section id="Service" class="st-about-wrap fade-in">
<div class="st-height-b100 st-height-lg-b80"></div>
<div class="container">
<div class="st-section-heading st-style1">
<h2 style="color:rgb(0, 0, 0); font-family:BrydanWrite; font-size:30px " >Reference</h2>
<!--h4 class="st-section-heading-title">SERVICES</!--h4>
<h2-- class="st-section-heading-subtitle">SERVICES</h2-->
</div>
<div class="st-height-b25 st-height-lg-b25"></div>
</div>
<!-- Iconbox Container -->
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="st-iconbox st-style1">
<div class="st-iconbox-icon">
<!--svg viewBox="0 1 512 512"-->
<img src="assets/img/client/ted.png" alt="portfolio">
<g>
<path d="m336 144a8 8 0 0 0 -8 8v104a8 8 0 0 0 16 0v-104a8 8 0 0 0 -8-8z" />
<path d="m336 272a8 8 0 0 0 -8 8v8a8 8 0 0 0 16 0v-8a8 8 0 0 0 -8-8z" />
<path
d="m496 24h-480a8 8 0 0 0 -8 8v352a8 8 0 0 0 8 8h288v64a32 32 0 0 0 64 0v-64h48a8.008 8.008 0 0 0 5.66-2.34l80-80a8.008 8.008 0 0 0 2.34-5.66v-272a8 8 0 0 0 -8-8zm-144 432a16 16 0 0 1 -32 0v-16h32zm0-32h-32v-8h32zm0-24h-32v-264h32zm0-280h-32v-6.11l.94-1.89h30.12l.94 1.89zm-23.06-24 7.06-14.11 7.06 14.11zm95.06 268.69v-52.69h52.69zm64-68.69h-72a8 8 0 0 0 -8 8v72h-40v-264a8.081 8.081 0 0 0 -.84-3.58l-24-48a8.009 8.009 0 0 0 -14.32 0l-24 48a8.081 8.081 0 0 0 -.84 3.58v264h-280v-336h464z" />
<path d="m48 72h72a8 8 0 0 0 0-16h-72a8 8 0 0 0 0 16z" />
<path d="m80 88a8 8 0 0 0 -8-8h-24a8 8 0 0 0 0 16h24a8 8 0 0 0 8-8z" />
<path
d="m288 88a104.118 104.118 0 0 0 -104 104 8 8 0 0 0 16 0 88.1 88.1 0 0 1 88-88 8 8 0 0 0 0-16z" />
<path
d="m240 184a8 8 0 0 0 -8 8 80.091 80.091 0 0 1 -80 80 8 8 0 0 0 0 16 96.108 96.108 0 0 0 96-96 8 8 0 0 0 -8-8z" />
<path
d="m456 192a8 8 0 0 0 16 0 80.091 80.091 0 0 0 -80-80 8 8 0 0 0 0 16 64.072 64.072 0 0 1 64 64z" />
<path
d="m168 216a48 48 0 1 0 -48 48 48.053 48.053 0 0 0 48-48zm-48 32a32 32 0 1 1 32-32 32.036 32.036 0 0 1 -32 32z" />
<path
d="m264 288a24 24 0 1 0 24 24 24.028 24.028 0 0 0 -24-24zm0 32a8 8 0 1 1 8-8 8.009 8.009 0 0 1 -8 8z" />
<path
d="m432 112a24 24 0 1 0 -24-24 24.028 24.028 0 0 0 24 24zm0-32a8 8 0 1 1 -8 8 8.009 8.009 0 0 1 8-8z" />
</g>
</div>
<div>
<h2 style="color:#e9eae5;font-family:BrydanWrite; font-size:30px" class="st-iconbox-title">
<h2 style="color:#e9eae5">DeFiniTed</h2>