-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1120 lines (1056 loc) · 63.6 KB
/
index.html
File metadata and controls
executable file
·1120 lines (1056 loc) · 63.6 KB
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>
<title> Kyle Awah 🇹🇹 | Software Developer </title>
<link rel="icon" href="images/browserthumb.png">
<link rel="stylesheet" href="css/style.css">
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<meta name="viewport" content="width=device-width , initial-scale=1">
<!-- SwiperJS CSS -->
<link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css" />
<!-- W3CSS -->
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<!-- Programming languages icons -->
<link rel="stylesheet" type='text/css' href="https://cdn.jsdelivr.net/gh/devicons/devicon@latest/devicon.min.css" />
</head>
<body>
<!-- SwiperJS js File -->
<script src="https://unpkg.com/swiper@8/swiper-bundle.min.js"></script>
<script src="js/mobile_menu.js"></script>
<div class="wrapper">
<!-- Loading Screen -->
<div class="loading_screen_holder hidden">
<div class="loading_screen">
<div class="flex_1">
<div class="img_wrapper">
<div class="img_items">
<image class="main_img" src="images/transparentme.png"></image>
</div>
<h1 class="name">
Kyle
<span class="space"></span>
Awah
</h1>
</div>
</div>
<div class="flex_1">
<div class="skills_holder">
<div class="skill_card flex_1">
<image class="skill_img" src="images/iosandriod.png"></image>
<h1 class="skill_txt"> MOBILE </h1>
</div>
<div class="skill_card flex_1">
<image class="skill_img" src="images/web.png"></image>
<h1 class="skill_txt"> WEB </h1>
<span class="small_txt"> FULL STACK </span>
</div>
<div class="skill_card flex_1">
<image class="skill_img" src="images/ai.png"></image>
<h1 class="skill_txt"> AI / ML </h1>
</div>
</div>
</div>
</div>
</div>
<!-- Loading Screen -->
<!-- Nav Btn -->
<div class="reload_holder hide_desktop">
<div onclick="change_look()" id="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</div>
<!-- Nav Btn -->
<!-- Sidebar Nav -->
<div id="nav_side_holder" class="nav_side_holder">
<div id="side_menu" class="nav">
<div class="mobile_nav">
<div class="nav_name_holder">
<h1 class="nav_name"> Kyle Awah </h1>
<span class="nav_small_txt"> (BSc. Hons)</span>
</div>
<p class="mobile_para">
Hey! 👋🏼 i'm Kyle, a mobile & fullstack web developer from the little island of Trinidad 🇹🇹 in the Caribbean.
</p>
<h1 class="mobile_spacer">____________</h1>
<div class="project_holder_2">
<h4 class="push_l"> 🌗 Dark Mode </h4>
<label class="switch down">
<input type="checkbox" onclick="toggleDarkMode()">
<span class="slider round"></span>
</label>
</div>
<div class="table">
<img id="github_icon" onclick="window.open('https://github.com/kyleAwah/')" class="nav_icons_1" src="https://img.icons8.com/?size=100&id=YSWCDCSF4H3N&format=png&color=000000" />
<img id="linkedin_icon" onclick="window.open('https://www.linkedin.com/in/kyleawah/')" class="nav_icons" src="https://img.icons8.com/?size=100&id=8808&format=png&color=000000" />
<a href="mailto:kyawah@gmail.com">
<img id="email_icon" class="nav_icons before_credits_icon" src="https://img.icons8.com/?size=100&id=YRRhCXfA0Vd0&format=png&color=000000" />
</a>
</div>
<div class="footer_para_2">
Crafted with
<span class="line_through">a keyboard ⌨️</span> love ❤️
<br>
2025
</div>
</div>
</div>
</div>
<!-- Sidebar Nav -->
<!-- Main Screen -->
<div id="main_screen_holder" class="main_screen_holder">
<div class="project_holder">
<div class="flex_1 padding_40 hide_mobile">
<!--LEFT CONTENT-->
<div class="left_content" id="left_content">
<div class="nav_name_holder">
<h1 class="nav_name"> Kyle Awah </h1>
<span class="nav_small_txt"> (BSc. Hons)</span>
</div>
<div>
<h4 id="index_1" class=""> 👋🏼 About Me </h4>
<h4 id="index_2" class=""> 🛠️ Experience </h4>
<h4 id="index_3" class=""> 🏢 Associations </h4>
<h4 id="index_6" class=""> 🎓 Education </h4>
<h4 id="index_4" class=""> 🌎 Impact </h4>
<h4 id="index_5" class=""> 🪪 Certifications </h4>
<h4 id="index_7" class=""> 🧑🏽💻 Technologies & Tools </h4>
<h4 id="index_8" class=""> 🏆 Awards & Languages </h4>
</div>
<h1>____________</h1>
<div class="project_holder">
<h4 class="push_l"> 🌙 Dark Mode </h4>
<label class="switch down">
<input type="checkbox" onclick="toggleDarkMode()">
<span class="slider round"></span>
</label>
</div>
<div class="table">
<img id="github_icon" onclick="window.open('https://github.com/kyleAwah/')" class="nav_icons_1" src="https://img.icons8.com/?size=100&id=YSWCDCSF4H3N&format=png&color=000000" />
<img id="linkedin_icon" onclick="window.open('https://www.linkedin.com/in/kyleawah/')" class="nav_icons" src="https://img.icons8.com/?size=100&id=8808&format=png&color=000000" />
<a href="mailto:kyawah@gmail.com">
<img id="email_icon" class="nav_icons before_credits_icon" src="https://img.icons8.com/?size=100&id=YRRhCXfA0Vd0&format=png&color=000000" />
</a>
</div>
<div class="footer_para">
Crafted with
<span class="line_through">a keyboard ⌨️</span> love ❤️
<br>
2025
</div>
</div>
</div>
<div class="flex_2 padding_40" id="right_content">
<!--RIGHT CONTENT-->
<div class="info_section_1">
<h1 id="title_1">👋🏼 Hey, i'm Kyle!</h1>
<div class="maintain_logo desc_top">
<image id="img_1" class="portrait" src="images/kyleportrait.jpeg"></image>
</div>
<p id="mini_1" class="side_desc desc_top project_img">
📍 Deer Creek, Ajax, Ontario, Canada 🇨🇦
</p>
<p id="desc_1" class="side_desc">
I'm a mobile & fullstack web developer born in the little island of Trinidad 🇹🇹 in the Caribbean. I have a passion for programming and developing innovative and revolutionary software that can change people's lives.
<br><br>My love for technology through life long exposure from family, friends and video games would later expand into my curiosity for its inner workings. Programming and software development naturally became the fields that I took interest within, both in terms of career and personal life.
<br><br>I believe that technology and software has the ability to drastically revolutionize the world and change the lives of billions of people. This capability should be used for the greatest possible good and advancement of our human civilization.
<br><br>I greatly look forward to working, collaborating and innovating to create a better future for us all!
</p>
<p class="signature"> ~KA. </p>
</div>
<div class="info_section">
<h1 id="title_2"> 🛠️ Experience</h1>
<p id="desc_2" class="side_desc">
These are the jobs which i have engaged in throughout the course of my professional career. These jobs span across many fields and regions encompassing
many disciplines as well as technologies.
</p>
<br>
<div id="top_3">
<div class="project_holder">
<div class="job_img_top">
<image height="120px" src="images/scarlet.png"></image>
</div>
<div class="job_desc">
<h2> Senior Software Developer </h2>
<p class="side_desc">
Scarlet Creative Software
<br>
2 Union Hall Settlement, San Fernando, Trinidad 🇹🇹 The Caribbean
<br><br>
<span class="pill green"> 🕑 Full-Time</span>
<span class="pill blue"> 📡 Remote</span>
</p>
</div>
</div>
<p class="side_desc">
Leading the organization through a mix of development and managerial tasks which oversee the efficient day to day operations of the firm as well as its international client interactions:
<br><br> - Client meetings & Communication
<br> - Proposals meetings & presentations with prospective clients
<br> - Weekly client reports
<br> - Bi-weekly staff check in meetings
<br> - Task breakdown and delegation to staff members across the organization
<br> - Talent Acquisition
<br> - New Hire Interviews
<br> - New employee Training
<br> - Team leading
<br> - Managing organizational scheduling of meetings
<br> - Leading product UI design across all of the organization’s Software
<br> - Operating in the capacity of Chief Technical Officer (CTO) during time off of higher staff members
</p>
</div>
<br>
<div id="top_3">
<div class="project_holder">
<div class="job_img_top">
<image height="120px" src="images/scarlet.png"></image>
</div>
<div class="job_desc">
<h2> Full-stack Developer </h2>
<p class="side_desc">
Scarlet Creative Software
<br>
2 Union Hall Settlement, San Fernando, Trinidad 🇹🇹 The Caribbean
<br><br>
<span class="pill green"> 🕑 Full-Time</span>
<span class="pill blue"> 📡 Remote</span>
</p>
</div>
</div>
<p class="side_desc">
Managing digital product development, release, project tasks, creating of user interface (UI) designs and developing them into software products for external clients (eclipsing 10,000 international users) as well as for internal use. These software products include but are not limited to:
<br><br> - Full-stack (Front-end, Back-end & Cloud) Web Development
<br> - Mobile App development (iOS, iPadOS, macOS, Android, Windows, Web & more)
<br> - Content Management System (CMS) Web Development
<br> - REST API Development & Deployment
<br> - Software Bot Development
<br> - Graphic Design
<br> - User Interface (UI) Design
<br> - Artificial Intelligence (AI) / Machine Learning (ML) software products.
</p>
</div>
<br>
<div id="top_4">
<div class="project_holder">
<div class="job_img_top">
<image height="120px" src="images/scarlet.png"></image>
</div>
<div class="job_desc">
<h2> Junior Front-end Developer </h2>
<p class="side_desc">
Scarlet Creative Software
<br>
2 Union Hall Settlement, San Fernando, Trinidad 🇹🇹 The Caribbean
<br><br>
<span class="pill green"> 🕑 Full-Time</span>
<span class="pill blue"> 📡 Remote</span>
</p>
</div>
</div>
<p class="side_desc">
Creating user interface (UI) designs and developing them into software products for external clients as well as internal use. These software products include but are not limited to:
<br><br> - Front-end (and it’s Back-end integration points) Web Development
<br> - Mobile App development (iOS, iPadOS, macOS, Android, Windows, Web & more)
<br> - Content Management System (CMS) Web Development
<br> - User Interface (UI) Design
</p>
</div>
<br>
<div id="top_5">
<div class="project_holder">
<div class="job_img_top">
<image height="120px" src="images/AA.png"></image>
</div>
<div class="job_desc">
<h2> Reservations, Sales & Chat Specialist </h2>
<p class="side_desc">
American Airlines
<br>
Newtown Center, 30-34 Maraval Road, Port-of-Spain, Trinidad 🇹🇹 The Caribbean (POSRES 🇺🇸)
<br><br>
<span class="pill green"> 🕑 Full-Time</span>
<span class="pill green"> 📍 On-Site</span>
</p>
</div>
</div>
<p class="side_desc">
Assisting domestic (US) & international (Global) clients with the details of their reservations, including but not limited to: scheduled departure / arrival times, additional features & policy outlines.
</p>
</div>
<br>
<div id="top_6">
<div class="project_holder">
<div class="job_img_top">
<image height="120px" src="images/fiver.png"></image>
</div>
<div class="job_desc">
<h2> Software Developer </h2>
<p class="side_desc">
Fiverr
<br>
United States of America 🇺🇸
<br><br>
<span class="pill orange"> ⌛️ Freelance</span>
<span class="pill blue"> 📡 Remote</span>
</p>
</div>
</div>
<p class="side_desc">
Designing & programming native iOS applications (SwiftUI), frontend websites (HTML/JS/CSS) & python software for clients.
</p>
</div>
</div>
<div class="info_section ">
<h1 id="title_3"> 🏢 Associations </h1>
<p id="desc_3" class="side_desc">
These are the companies which i have interacted with throughout the course of my professional career as well as educational career.
These interactions & tasks span across many fields and regions encompassing many disciplines as well as technologies.
</p>
<div id="association_1">
<div class="project_holder">
<div class="job_img_top">
<image height="100px" src="images/guidepoint.png"></image>
</div>
<div class="job_desc">
<h2> NFT, Blockchain & Decentralized Technology Consultant </h2>
<p class="side_desc">
Guidepoint
<br>
Düsseldorf, North Rhine-Westphalia, Germany 🇩🇪
<br><br>
<span class="pill blue"> 📡 Remote</span>
</p>
</div>
</div>
<p class="side_desc">
Advising the firm’s clients as a member of their associates network of advisors. Consultation was given on the best frameworks and implementation strategies to achieve their business objectives through the utilization of decentralized technologies.
</p>
</div>
<br>
<div id="association_2">
<div class="project_holder">
<div class="job_img_top">
<image height="120px" src="images/awesomic.png"></image>
</div>
<div class="job_desc">
<h2> Front-end WebFlow Developer Candidate </h2>
<p class="side_desc">
Awesomic
<br>
Kyiv, Ukraine 🇺🇦
<br><br>
<span class="pill blue"> 📡 Remote</span>
</p>
</div>
</div>
<p class="side_desc">
Considered as a candidate for Awesomic’s software developer network. This network develops front-end websites for the firm’s clients through the WebFlow low-code design platform
</p>
</div>
</div>
<div class="info_section">
<h1 id="title_6"> 🎓 Education</h1>
<p id="desc_6" class="side_desc">
These are the formal education qualifications which i have been awarded throughout my lifetime. These qualifications were presented through the completion of
extensive multidisciplinary courses for several years.
</p>
<br>
<div id="edu_1">
<div class="center">
<div class="job_img_top">
<image height="140px" src="images/UofT.png"></image>
</div>
<div>
<h2>
Educational Credential Assessment (ECA)
</h2>
<p class="side_desc">
University of Toronto
<br>
<span class="side_lbl_2 sml">(School of Continuing Studies)</span>
<br>
158 St George Street, Toronto, Ontario, Canada 🇨🇦
<br><br>
<span class="pill blue"> 🇨🇦 Educational Credential Assessment</span>
</p>
<p id="desc_6" class="side_desc">
An Educational Credential Assessment is an official conversion and certification of tertiary education credentials from it's prior educational system
within the country they were awarded, to the standard of the educational system within the country to whom which the certifying organization belongs to.
</p>
</div>
</div>
<br>
<div class="project_holder">
<div class="job_img_top">
<image height="120px" src="images/uwilogo.png"></image>
</div>
<div class="job_desc">
<h2>
Bachelor of Science (BSc. Hons.) Major: Information Technology, Minor: Management of Information Systems
</h2>
<p class="side_desc">
University of the West Indies
<br>
St. Augustine Campus, Trinidad 🇹🇹 The Caribbean
<br><br>
<span class="pill green"> 🎓 Upper Second Class Honors</span>
<br class="hide_desktop"> <br class="hide_desktop">
<span class="pill blue"> 🇨🇦 Degree Converted & Certified</span>
</p>
</div>
</div>
</div>
<br>
<div id="edu_2">
<div class="project_holder">
<div class="job_img_top">
<image height="120px" src="images/fatimalogo.png"></image>
</div>
<div class="job_desc">
<h2>
Caribbean Advanced Proficiency Examination (CAPE)
</h2>
<p class="side_desc">
Fatima College
<br>
St. James, Trinidad 🇹🇹 The Caribbean
<br><br>
<span class="pill green"> 📄 Full Certificate</span>
</p>
</div>
</div>
<p class="side_desc">
Caribbean Studies, Communication Studies, Computer
Science & Management of Business (MOB)
</p>
</div>
<br>
<div id="edu_3">
<div class="project_holder">
<div class="job_img_top">
<image height="120px" src="images/fatimalogo.png"></image>
</div>
<div class="job_desc">
<h2>
Caribbean Secondary Education Certificate (CSEC)
</h2>
<p class="side_desc">
Fatima College
<br>
St. James, Trinidad 🇹🇹 The Caribbean
<br><br>
<span class="pill green"> 📄 Full Certificate</span>
</p>
</div>
</div>
<p class="side_desc">
Mathematics, English A, English B, Information Technology
(IT), Principles of Business (POB), Technical Drawing, Physics & French
</p>
</div>
</div>
<div class="info_section ">
<h1 id="title_4"> 🌎 Impact</h1>
<p id="desc_4" class="side_desc">
I strongly believe that everyone, regardless of their career, job experience, or education level, has the potential to positively influence and transform the world. In my professional journey,
I've had the privilege to leverage software development (both as a developer & team lead) to improve the lives of hundreds of thousands of people across various regions. Whether it's making a difference in large communities or brightening
the day of just one individual, the opportunity to create meaningful change has been incredibly fulfilling.
</p>
<div class="project_holder">
<div id="stats" class="flex_1 pr">
<div id="stat_1">
<h2> 🇨🇦 Canada </h2>
<div class="w3-light-grey w3-round-xlarge">
<div class="w3-container w3-blue w3-round-xlarge" style="width:80%">200,000</div>
</div>
</div>
<br>
<div id="stat_2">
<h2> 🇺🇸 United States </h2>
<div class="w3-light-grey w3-round-xlarge">
<div class="w3-container w3-blue w3-round-xlarge" style="width:60%">80,000</div>
</div>
</div>
<br>
<div id="stat_4">
<h2> 🇦🇺 Australia </h2>
<div class="w3-light-grey w3-round-xlarge">
<div class="w3-container w3-blue w3-round-xlarge" style="width:18%">5,000</div>
</div>
</div>
<br>
</div>
<div class="flex_1">
<div id="stat_4">
<h2> 🇻🇪 Venezuela (LATAM) </h2>
<div class="w3-light-grey w3-round-xlarge">
<div class="w3-container w3-blue w3-round-xlarge" style="width:35%">10,000</div>
</div>
</div>
<br>
<div id="stat_4">
<h2> 🇵🇦 Panama (LATAM) </h2>
<div class="w3-light-grey w3-round-xlarge">
<div class="w3-container w3-blue w3-round-xlarge" style="width:28%">5,000</div>
</div>
</div>
<br>
<div id="stat_3">
<h2> 🇹🇹 Trinidad & Tobago </h2>
<div class="w3-light-grey w3-round-xlarge">
<div class="w3-container w3-blue w3-round-xlarge" style="width:18%">5,000</div>
</div>
</div>
</div>
</div>
<p class="side_lbl_2 sml"> *Active & retrospective users estimated to the nearest 1,000 biased on internal analytics </p>
</div>
<div class="info_section ">
<h1 id="title_5"> 🪪 Certifications </h1>
<p id="desc_5" class="side_desc">
These are the certifications which i have been awarded throughout my career. These certifications were presented through the completion of courses
spaning across many disciplines and encompass technologies and techniques which are leveraged to create a positive impact on our world.
</p>
<br>
<div id="cert_1" class="project_holder">
<div class="job_img_top">
<image height="140px" src="images/GoogleAnalyticsAdvanced.jpg"></image>
</div>
<div class="job_desc">
<h2>
Advanced Google Analytics Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/google.png"></image>
<p class="side_lbl"> GOOGLE </p>
</div>
</div>
</div>
<br>
<div id="cert_2" class="project_holder">
<div class="job_img_top">
<image height="82px" src="images/IBMAgile.jpg"></image>
</div>
<div class="job_desc">
<h2>
Agile Software Development For Leaders Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/ibm.png"></image>
<p class="side_lbl"> IBM </p>
</div>
</div>
</div>
<br>
<div id="cert_3" class="project_holder">
<div class="job_img_top">
<image height="140px" src="images/GoogleAnalyticsBeginner.jpg"></image>
</div>
<div class="job_desc">
<h2>
Beginners Google Analytics Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/google.png"></image>
<p class="side_lbl"> GOOGLE </p>
</div>
</div>
</div>
<br>
<div id="cert_4" class="project_holder">
<div class="job_img_top">
<image height="130px" src="images/BitDegreePolygonDapps.jpg"></image>
</div>
<div class="job_desc">
<h2>
Certificat de conception application décentralisée sur polygon pour débutants
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/bitdegree.png"></image>
<p class="side_lbl"> BIT DEGREE </p>
</div>
</div>
</div>
<br>
<div id="cert_5" class="project_holder">
<div class="job_img_top">
<image height="130px" src="images/BitDegreeWebBeginner.jpg"></image>
</div>
<div class="job_desc">
<h2>
Certificat de conception website pour débutants
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/bitdegree.png"></image>
<p class="side_lbl"> BIT DEGREE </p>
</div>
</div>
</div>
<br>
<div id="cert_6" class="project_holder">
<div class="job_img_top">
<image height="115px" src="images/KaggleDataVisualization.jpg"></image>
</div>
<div class="job_desc">
<h2>
Data Visualization With Python Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/kaggle.png"></image>
<p class="side_lbl"> KAGGLE (a subsidiary of Google LLC.) </p>
</div>
</div>
</div>
<br>
<div id="cert_7" class="project_holder">
<div class="job_img_top">
<image height="115px" src="images/KaggleDeepLearning.jpg"></image>
</div>
<div class="job_desc">
<h2>
Deep Learning (AI/ML) Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/kaggle.png"></image>
<p class="side_lbl"> KAGGLE (a subsidiary of Google LLC.) </p>
</div>
</div>
</div>
<br>
<div id="cert_8" class="project_holder">
<div class="job_img_top">
<image height="130px" src="images/HPEffectiveWebsites.jpg"></image>
</div>
<div class="job_desc">
<h2>
Effective Business Websites Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/hp.png"></image>
<p class="side_lbl"> HP </p>
</div>
</div>
</div>
<br>
<div id="cert_9" class="project_holder">
<div class="job_img_top">
<image height="130px" src="images/UnitedNationsEmergencyTelecommunicationsTraining.jpg"></image>
</div>
<div class="job_desc">
<h2>
Emergency Telecommunications Training (ETT) Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/unicef.png"></image>
<p class="side_lbl"> UNITED NATIONS (UNICEF) </p>
</div>
</div>
</div>
<br>
<div id="cert_10" class="project_holder">
<div class="job_img_top">
<image height="130px" src="images/GoogleDigitalMarketing.jpg"></image>
</div>
<div class="job_desc">
<h2>
Fundamentals of Digital Marketing Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/google.png"></image>
<p class="side_lbl"> GOOGLE </p>
</div>
</div>
</div>
<br>
<div id="cert_11" class="project_holder">
<div class="job_img_top">
<image height="140px" src="images/HubSpotGrowthDrivenDesign.jpg"></image>
</div>
<div class="job_desc">
<h2>
Growth Driven Website Design Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/hubspot.png"></image>
<p class="side_lbl"> HUBSPOT </p>
</div>
</div>
</div>
<br>
<div id="cert_12" class="project_holder">
<div class="job_img_top">
<image height="130px" src="images/BitDegreeBrackets.jpg"></image>
</div>
<div class="job_desc">
<h2>
Integrated Web Development Environment (IDE): Brackets Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/bitdegree.png"></image>
<p class="side_lbl"> BIT DEGREE </p>
</div>
</div>
</div>
<br>
<div id="cert_13" class="project_holder">
<div class="job_img_top">
<image height="130px" src="images/HPITBuisnessSucess.jpg"></image>
</div>
<div class="job_desc">
<h2>
Information Technology for Business Success Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/hp.png"></image>
<p class="side_lbl"> HP </p>
</div>
</div>
</div>
<br>
<div id="cert_14" class="project_holder">
<div class="job_img_top">
<image height="115px" src="images/KagglePython.jpg"></image>
</div>
<div class="job_desc">
<h2>
Python Programming Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/kaggle.png"></image>
<p class="side_lbl"> KAGGLE (a subsidiary of Google LLC.) </p>
</div>
</div>
</div>
<br>
<div id="cert_15" class="project_holder">
<div class="job_img_top">
<image height="140px" src="images/HubSpotSEO.jpg"></image>
</div>
<div class="job_desc">
<h2>
Search Engine Optimization (SEO) Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/hubspot.png"></image>
<p class="side_lbl"> HUBSPOT </p>
</div>
</div>
</div>
<br>
<div id="cert_16" class="project_holder">
<div class="job_img_top">
<image height="250px" src="images/CDCSocialMediaMarketing.jpg"></image>
</div>
<div class="job_desc">
<h2>
Social Media Marketing Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/cdclondon.png"></image>
<p class="side_lbl"> CDC LONDON </p>
</div>
</div>
</div>
<br>
<div id="cert_17" class="project_holder">
<div class="job_img_top">
<image height="140px" src="images/LinkedinSoftwareDev.jpg"></image>
</div>
<div class="job_desc">
<h2>
Software Development Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/linkedin.png"></image>
<p class="side_lbl"> LINKEDIN </p>
</div>
</div>
</div>
<br>
<div id="cert_18" class="project_holder">
<div class="job_img_top">
<image height="250px" src="images/OpenUniSoftwareForEnterprise.jpg"></image>
</div>
<div class="job_desc">
<h2>
Software Development for Enterprise Systems Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/linkedin.png"></image>
<p class="side_lbl"> THE OPEN UNIVERSITY </p>
</div>
</div>
</div>
<br>
<div id="cert_19" class="project_holder">
<div class="job_img_top">
<image height="250px" src="images/OpenUniUI.jpg"></image>
</div>
<div class="job_desc">
<h2>
User Interface (UI) Design Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/linkedin.png"></image>
<p class="side_lbl"> THE OPEN UNIVERSITY </p>
</div>
</div>
</div>
<br>
<div id="cert_20" class="project_holder">
<div class="job_img_top">
<image height="130px" src="images/UnitedNationsWebAccessibility.jpg"></image>
</div>
<div class="job_desc">
<h2>
Website Accessibility (UI/UX) Training Certificate
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/unicef.png"></image>
<p class="side_lbl"> UNITED NATIONS (UNICEF) </p>
</div>
</div>
</div>
</div>
<div class="info_section">
<h1 id="title_7" > 🧑🏽💻 Technologies & Tools </h1>
<p id="desc_7" class="side_desc">
In tandem with the many acquired skillsets through out my career I utilize multiple (76 in total!) programming languages, frameworks, technologies, techniques
and applications to leverage software development and create a positive impact.
</p>
<div class="icon_holder">
<i class="icon_tech devicon-amazonwebservices-plain-wordmark"></i>
<i class="icon_tech devicon-android-plain"></i>
<i class="icon_tech devicon-apache-plain"></i>
<i class="icon_tech devicon-apple-original"></i>
<i class="icon_tech devicon-azuresqldatabase-plain"></i>
<i class="icon_tech devicon-bash-plain"></i>
<i class="icon_tech devicon-blender-original"></i>
<i class="icon_tech devicon-bootstrap-plain"></i>
<i class="icon_tech devicon-c-plain"></i>
<i class="icon_tech devicon-chrome-plain"></i>
<i class="icon_tech devicon-codepen-original"></i>
<i class="icon_tech devicon-cplusplus-plain"></i>
<i class="icon_tech devicon-css3-plain"></i>
<i class="icon_tech devicon-dart-plain"></i>
<i class="icon_tech devicon-django-plain"></i>
<i class="icon_tech devicon-dreamweaver-plain"></i>
<i class="icon_tech devicon-fastapi-plain"></i>
<i class="icon_tech devicon-figma-plain"></i>
<i class="icon_tech devicon-firebase-plain"></i>
<i class="icon_tech devicon-flask-original"></i>
<i class="icon_tech devicon-flutter-plain"></i>
<i class="icon_tech devicon-gimp-plain"></i>
<i class="icon_tech devicon-git-plain"></i>
<i class="icon_tech devicon-github-original"></i>
<i class="icon_tech devicon-githubactions-plain"></i>
<i class="icon_tech devicon-googlecloud-plain"></i>
<i class="icon_tech devicon-heroku-original"></i>
<i class="icon_tech devicon-html5-plain"></i>
<i class="icon_tech devicon-intellij-plain"></i>
<i class="icon_tech devicon-javascript-plain"></i>
<i class="icon_tech devicon-jira-plain"></i>
<i class="icon_tech devicon-jquery-plain"></i>
<i class="icon_tech devicon-json-plain"></i>
<i class="icon_tech devicon-markdown-original"></i>
<i class="icon_tech devicon-maya-plain"></i>
<i class="icon_tech devicon-mysql-original"></i>
<i class="icon_tech devicon-nginx-original"></i>
<i class="icon_tech devicon-nodejs-plain"></i>
<i class="icon_tech devicon-notion-plain"></i>
<i class="icon_tech devicon-npm-original-wordmark"></i>
<i class="icon_tech devicon-nuxtjs-plain"></i>
<i class="icon_tech devicon-oauth-plain"></i>
<i class="icon_tech devicon-pandas-plain"></i>
<i class="icon_tech devicon-photoshop-plain"></i>
<i class="icon_tech devicon-php-plain"></i>
<i class="icon_tech devicon-phpstorm-plain"></i>
<i class="icon_tech devicon-poetry-plain"></i>
<i class="icon_tech devicon-postgresql-plain"></i>
<i class="icon_tech devicon-postman-plain"></i>
<i class="icon_tech devicon-powershell-plain"></i>
<i class="icon_tech devicon-putty-plain"></i>
<i class="icon_tech devicon-pycharm-plain"></i>
<i class="icon_tech devicon-pypi-plain"></i>
<i class="icon_tech devicon-python-plain"></i>
<i class="icon_tech devicon-r-plain"></i>
<i class="icon_tech devicon-raspberrypi-plain"></i>
<i class="icon_tech devicon-safari-plain"></i>
<i class="icon_tech devicon-sketch-plain"></i>
<i class="icon_tech devicon-slack-plain"></i>
<i class="icon_tech devicon-sqlite-plain"></i>
<i class="icon_tech devicon-ssh-original"></i>
<i class="icon_tech devicon-stackoverflow-plain"></i>
<i class="icon_tech devicon-streamlit-plain"></i>
<i class="icon_tech devicon-swift-plain"></i>
<i class="icon_tech devicon-swiper-original"></i>
<i class="icon_tech devicon-tailwindcss-original"></i>
<i class="icon_tech devicon-trello-plain"></i>
<i class="icon_tech devicon-typescript-plain"></i>
<i class="icon_tech devicon-vite-original"></i>
<i class="icon_tech devicon-vscode-plain"></i>
<i class="icon_tech devicon-vuejs-plain"></i>
<i class="icon_tech devicon-webflow-original"></i>
<i class="icon_tech devicon-webstorm-plain"></i>
<i class="icon_tech devicon-woocommerce-plain"></i>
<i class="icon_tech devicon-wordpress-plain"></i>
<i class="icon_tech devicon-xcode-plain"></i>
<i class="icon_tech devicon-xml-plain"></i>
<i class="icon_tech devicon-yaml-plain"></i>
</div>
</div>
<div class="info_section_2">
<h1 id="title_8"> 🏆 Awards & Languages</h1>
<p id="desc_8"class="side_desc">
These are the awards which i have received in commemoration of the impact created on communities around the world. Additionally,
these are the languages which i can communicate and converse in.
</p>
<div id="award_1" class="project_holder">
<div class="job_img_top">
<image height="115px" src="images/ig.png"></image>
</div>
<div class="job_desc">
<h2>
Instagram VR / AR Creator Award: 100,000 Impressions
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/meta.png"></image>
<p class="side_lbl"> META / Facebook </p>
</div>
</div>
</div>
<br>
<div id="award_2" class="project_holder">
<div class="job_img_top">
<image height="115px" src="images/ig.png"></image>
</div>
<div class="job_desc">
<h2>
Instagram VR / AR Creator Award: 50,000 Impressions
</h2>
<div class="project_holder">
<image class="hide_mobile" height="20px" src="images/meta.png"></image>
<p class="side_lbl"> META / Facebook </p>
</div>
</div>
</div>
<br><br>
<span>________________________</span>
<br><br>
<div class="project_holder">
<div id="award_3" class="flex_1">
<img src="images/IELTS.png" height="50px" style="margin-top: 40px;"></img>
<h2>
🏴 English