-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1043 lines (1036 loc) · 60.5 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 lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Portfolio | Eliakim</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Mobile nav toggle button ======= -->
<i class="bi bi-list mobile-nav-toggle d-xl-none"></i>
<!-- ======= Header ======= -->
<header id="header">
<div class="d-flex flex-column">
<div class="profile">
<img src="assets/img/profile-img.jpg" alt="" class="img-fluid rounded-circle">
<h1 class="text-light"><a href="index.html">Eliakim Atamba</a></h1>
<div class="social-links mt-3 text-center">
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="#" class="google-plus"><i class="bx bxl-skype"></i></a>
<a href="https://www.linkedin.com/in/eliakim-atamba-942259158/" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
<nav id="navbar" class="nav-menu navbar">
<ul>
<li><a href="#hero" class="nav-link scrollto active"><i class="bx bx-home"></i> <span>Home</span></a></li>
<li><a href="#about" class="nav-link scrollto"><i class="bx bx-user"></i> <span>About</span></a></li>
<li><a href="#resume" class="nav-link scrollto"><i class="bx bx-file-blank"></i> <span>Resume</span></a></li>
<li><a href="#portfolio" class="nav-link scrollto"><i class="bx bx-book-content"></i> <span>Portfolio</span></a></li>
<li><a href="#services" class="nav-link scrollto"><i class="bx bx-server"></i> <span>Services</span></a></li>
<li><a href="#contact" class="nav-link scrollto"><i class="bx bx-envelope"></i> <span>Contact</span></a></li>
</ul>
</nav>
<!-- .nav-menu -->
</div>
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex flex-column justify-content-center align-items-center">
<div class="hero-container" data-aos="fade-in">
<h1>Hi!</h1>
<h1>I'm Eliakim Atamba</h1>
<br>
<p> <span class="typed" data-typed-items="
A Software Engineer,
A Web Developer,
An Application Developer,
A Database Administrator,
A System Analyst,
A Network Engineer,
An IT Consultant,
A QA Engineer,
A Software Architect,
A Business Analyst,
A Project Manager,
A Mathematics and Computer Science Researcher,
A Graphic Designer
"></span></p>
</div>
</section>
<!--
<section id="hero" class="d-flex flex-column justify-content-center align-items-center">
<div class="hero-container" data-aos="fade-in">
<h1>Hi!</h1>
<h1 id="name">I'm Eliakim Atamba</h1>
<br>
<p>
<span class="typed" id="typed-main" data-typed-items="
A Software Engineer,
A Web Dev,
An Application Developer,
A Database Administrator,
A System Analyst,
A Network Engineer,
An IT Consultant,
A QA Engineer,
A Software Architect,
A Business Analyst,
A Project Manager,
A Mathematics and Computer Science Researcher,
A Graphic Designer
"></span>
</p>
<p id="typed-specialties" style="display:none;">
<span class="typed-specialties"></span>
</p>
</div>
</section>
<script>
// Initialize the first typing effect for specialties
var typedMain = new Typed('.typed', {
stringsElement: '#typed-main',
typeSpeed: 50,
backSpeed: 50,
backDelay: 1000,
startDelay: 1000,
loop: false,
onComplete: function() {
// Remove the name and start typing the specialties
document.getElementById('name').style.display = 'none';
// Show the second paragraph for specialties
document.getElementById('typed-specialties').style.display = 'block';
// Start typing the specialties
new Typed('.typed-specialties', {
strings: [
"Code with Purpose. Tested for Excellence.",
"Innovating Through Development, Perfecting Through Testing.",
"Building Software. Ensuring Quality.",
"From Concept to Code, From Code to Perfection.",
"Develop. Test. Deliver."
],
typeSpeed: 50,
backSpeed: 50,
backDelay: 1000,
loop: false
});
}
});
</script>
-->
<!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="section-title">
<h2>About</h2>
<p style="font-family: monospace; text-align: center; margin-bottom: 30px;">
Welcome to my portfolio! <br>
With a foundation in mathematics and computer science, I've cultivated a career dedicated to the synergy of logic and innovation.
Explore my journey through the world of technology and problem-solving. 🌐💡
<!--Welcome to my portfolio! I'm a dedicated and innovative software engineer with a passion for crafting cutting-edge solutions. 🧙♂️✨-->
</p>
</div>
<div class="timeline">
<!-- Timeline Item 1 -->
<div class="timeline-item">
<div class="timeline-content">
<h3>Who Am I?</h3>
<p>
I'm an accomplished problem solver, a master of code, and a technology enthusiast with a deep understanding of computer science and software engineering principles.
</p>
<p style="font-style: italic; font-weight: bold;">
With a keen eye for detail, I excel in debugging and software development, ensuring that every project I undertake is a masterpiece. 🕵️♂️🔍
</p>
</div>
<div class="timeline-badge">
📅
</div>
</div>
<!-- Timeline Item 2 -->
<div class="timeline-item">
<div class="timeline-content">
<h3>Mobile Marvel</h3>
<p>
I've conquered the realms of mobile development, adeptly crafting applications for both iOS and Android platforms.
</p>
<p style="font-style: italic; font-weight: bold;">
📱🚀
</p>
</div>
<div class="timeline-badge">
📅
</div>
</div>
<!-- Timeline Item 3 -->
<div class="timeline-item">
<div class="timeline-content">
<h3>Quality Assurance Extraordinaire</h3>
<p>
I'm not just a builder; I'm a quality assurance expert. I ensure that your software is as robust as it can be, putting it through rigorous testing and scrutiny.
</p>
<p style="font-style: italic; font-weight: bold;">
I guarantee that your software is fortified like a tank, ready to withstand any challenge. 🛡️🤖
</p>
</div>
<div class="timeline-badge">
📅
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="about-content">
<h3>Team Player and Solo Virtuoso</h3>
<p>
Whether collaborating within a team or working independently, I adapt seamlessly to deliver top-notch results. I'm your versatile software expert.
</p>
<p style="font-style: italic; font-weight: bold;">
🤝🚀
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-right" style="radius:50%;">
<img src="assets/img/profile-img.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>UI/UX Designer & Web Developer.</h3>
<p class="fst-italic">
I am passionate about crafting exceptional user experiences and building visually appealing web solutions.
</p>
<div class="row">
<div class="col-lg-6">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>Website:</strong> <span><a href="softbelt.net">SoftBelt.net</a></span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Phone:</strong> <span>Phone </span></li>
<li><i class="bi bi-chevron-right"></i> <strong>City:</strong> <span>Nairobi</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Start-Up:</strong> <span>SoftBelt Co.</span></li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<!--
<li><i class="bi bi-chevron-right"></i> <strong>Age:</strong> <span>
<script>
var years = Math.floor((Date.now()-(new Date("1997-12-08")))/(1000*3600*24*365));
document.write(years);
</script></span> years</li>
-->
<li><i class="bi bi-chevron-right"></i> <strong>Field:</strong> <span>BSc. Mathematics & Computer Science</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Email:</strong> <span>Mail</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Freelancing:</strong> <span>Available</span></li>
</ul>
</div>
</div>
<p>
I thrive on challenges and deliver results with utmost precision and creativity. Let's transform your ideas into digital excellence.
</p>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- ======= Facts Section ======= -->
<section id="facts" class="facts">
<div class="container">
<div class="section-title">
<h2>Facts</h2>
<p>Let the numbers speak for themselves. Here are some key statistics that reflect my dedication and commitment to excellence in the world of software engineering.</p>
</div>
<div class="row no-gutters">
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up">
<div class="count-box">
<i class="bi bi-emoji-smile"></i>
<span data-purecounter-start="0" data-purecounter-end="232" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Happy Clients</strong> who have experienced our exceptional services.</p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up" data-aos-delay="100">
<div class="count-box">
<i class="bi bi-journal-richtext"></i>
<span data-purecounter-start="0" data-purecounter-end="521" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Projects</strong> completed successfully, showcasing our expertise.</p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up" data-aos-delay="200">
<div class="count-box">
<i class="bi bi-headset"></i>
<span data-purecounter-start="0" data-purecounter-end="1453" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Hours Of Support</strong> provided to ensure client satisfaction.</p>
</div>
</div>
<div class="col-lg-3 col-md-6 d-md-flex align-items-md-stretch" data-aos="fade-up" data-aos-delay="300">
<div class="count-box">
<i class="bi bi-people"></i>
<span data-purecounter-start="0" data-purecounter-end="32" data-purecounter-duration="1" class="purecounter"></span>
<p><strong>Hard Workers</strong> dedicated to achieving outstanding results.</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Facts Section -->
<!-- ======= Skills Section ======= -->
<section id="skills" class="skills section-bg">
<div class="container">
<div class="section-title">
<h2>Skills</h2>
<p>My technical expertise and proficiency in various domains allow me to excel in the following areas:</p>
</div>
<div class="row skills-content">
<div class="col-lg-6" data-aos="fade-up">
<div class="progress">
<span class="skill">C <i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">C++ <i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Java <i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Python <i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Arduino <i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">C# <i class="val">65%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<div class="progress">
<span class="skill">HTML <i class="val">95%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">CSS <i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">JavaScript <i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">PHP <i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">WordPress/CMS <i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
<div class="progress">
<span class="skill">Adobe Photoshop <i class="val">55%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="55" aria-valuemin="0" aria-valuemax="100"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Skills Section -->
<!-- ======= Resume Section ======= -->
<section id="resume" class="resume">
<div class="container">
<div class="section-title">
<h2>Resume</h2>
</div>
<div class="resume-content">
<div class="resume-cards" id="resume-cards">
<!-- Cards will be dynamically generated here -->
</div>
</div>
<style>
/* Styling for resume cards */
.resume-cards {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.resume-card {
background-color: #f7f7f7;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
flex-basis: calc(50% - 20px); /* Two cards per row on medium-sized displays */
box-sizing: border-box;
transition: transform 0.2s; /* Smooth hover or tap effect */
cursor: pointer; /* Add pointer cursor for interaction */
}
.resume-card h3 {
font-size: 24px;
margin-bottom: 10px;
}
.resume-card ul {
list-style-type: none;
padding: 0;
}
.resume-card ul li {
margin-bottom: 5px;
padding-left: 20px;
position: relative;
}
.resume-card ul li:before {
content: '\2022'; /* Bullet point */
position: absolute;
left: 0;
color: #007bff; /* Adjust the color as needed */
}
/* On hover or tap, scale up the card for interaction */
.resume-card:hover,
.resume-card:focus {
transform: scale(1.05);
background-color: purple;
color: white;
}
@media (max-width: 768px) {
.resume-card {
flex-basis: calc(100% - 20px); /* One card per row on small displays */
}
}
</style>
<script>
const resumeData = [
{
title: 'Web Developer',
skills: ['Expertise in HTML, CSS, JavaScript, and PHP', 'Proficient in MySQL, Apache, and Linux', 'Experience in responsive and cross-browser development'],
},
{
title: 'Application Developer',
skills: ['Expertise in Java, C++, and Python', 'Proficient in MySQL, Oracle, and Linux', 'Experience in developing desktop and web applications'],
},
{
title: 'Mobile Developer',
skills: ['Expertise in Objective C, Swift, and Java', 'Proficient in MySQL, Oracle, and Linux', 'Experience in developing iOS and Android applications'],
},
{
title: 'Database Administrator',
skills: ['Expertise in MySQL, Oracle, and SQL Server', 'Proficient in Linux and Windows', 'Experience in managing and maintaining databases'],
},
{
title: 'System Analyst',
skills: ['Expertise in business analysis and requirements gathering', 'Proficient in project management and system testing', 'Experience in developing functional and technical specifications'],
},
{
title: 'Network Engineer',
skills: ['Expertise in Cisco, Juniper, and Huawei', 'Proficient in TCP/IP, MPLS, and BGP', 'Experience in designing, implementing, and troubleshooting networks'],
},
{
title: 'IT Consultant',
skills: ['Expertise in project management and business analysis', 'Proficient in requirements gathering and system testing', 'Experience in developing IT strategies and solutions'],
},
{
title: 'QA Engineer',
skills: ['Expertise in manual and automated testing', 'Proficient in test planning and test case development', 'Experience in black box, white box, and regression testing'],
},
{
title: 'Software Architect',
skills: ['Expertise in software design and development', 'Proficient in UML and object-oriented design', 'Experience in developing software architectures'],
},
{
title: 'Business Analyst',
skills: ['Expertise in requirements gathering and business process modeling', 'Proficient in data analysis and project management', 'Experience in developing business requirements and business solutions'],
},
{
title: 'Project Manager',
skills: ['Expertise in project planning and execution', 'Proficient in risk management and change management', 'Experience in leading and managing project teams'],
},
{
title: 'Technical Writer',
skills: ['Expertise in developing technical documentation', 'Proficient in MadCap Flare and Adobe Acrobat', 'Experience in writing user manuals, installation guides, and release notes'],
},
{
title: 'Graphic Designer',
skills: ['Expertise in Photoshop, Illustrator, and InDesign', 'Proficient in web design and layout', 'Experience in creating logos, banners, and infographics'],
},
];
// Function to create and append a card to the resume-cards div
function createResumeCard(title, skills) {
const resumeCards = document.getElementById('resume-cards');
// Create a card element
const card = document.createElement('div');
card.classList.add('resume-card');
// Card content
card.innerHTML = `
<h3>${title}</h3>
<ul>
${skills.map(skill => `<li>${skill}</li>`).join('')}
</ul>
`;
// Append the card to the container
resumeCards.appendChild(card);
}
// Dynamically create cards from the data
resumeData.forEach(item => {
createResumeCard(item.title, item.skills);
});
</script>
<div class="row">
<div class="col-lg-6" data-aos="fade-up">
<h3 class="resume-title">Summary</h3>
<div class="resume-item pb-0">
<h4>Eliakim Atamba</h4>
<p><em>Innovative and deadline-driven Graphic Designer with over 3 years of experience designing and developing user-centered digital and print marketing materials from initial concept to final polished deliverables.</em></p>
<ul>
<li>Address: Nairobi, Kenya</li>
<li>Phone: <a href="tel:+254792539497">Phone</a></li>
<li>Email: <a href="mailto:eliakimatamba@gmail.com">Mail</a></li>
</ul>
</div>
<h3 class="resume-title">Education</h3>
<div class="resume-item">
<h4>Bachelor of Science in Mathematics and Computer Science</h4>
<h5>2017 - 2021</h5>
<p><em>Jomo Kenyatta University of Agriculture and Technology (JKUAT), Nairobi, Kenya</em></p>
<p>Graduated with a Bachelor of Science degree in Mathematics and Computer Science, gaining a strong foundation in both disciplines.</p>
</div>
<div class="resume-item">
<h4>Bootcamp in Software Engineering</h4>
<h5>2021 - 2022</h5>
<p><em>Kenya Coding Academy, Nairobi, Kenya</em></p>
<p>Completed an intensive software engineering bootcamp, specializing in modern development practices and technologies.</p>
</div>
<div class="resume-item">
<h4>Volunteer Experience</h4>
<h5>2019 - 2020</h5>
<p><em>Volunteer Corps, Nairobi, Kenya</em></p>
<p>Volunteered in various roles related to mathematics and computer science, applying my skills to benefit the community and gain practical experience within these fields.</p>
</div>
</div>
<div class="col-lg-6" data-aos="fade-up" data-aos-delay="100">
<h3 class="resume-title">Professional Experience</h3>
<div class="resume-item">
<h4>Software Engineer (DevOps, GitOps)</h4>
<h5>2021 - Present</h5>
<p><em>SoftBelt, Nairobi, Kenya</em></p>
<ul>
<li>Work as a software engineer with a primary focus on DevOps and GitOps practices.</li>
<li>Lead DevOps initiatives, ensuring efficient and automated software delivery pipelines.</li>
<li>Implement GitOps principles to manage infrastructure and application deployments.</li>
<li>Collaborate with cross-functional teams to optimize development and deployment workflows.</li>
</ul>
</div>
<div class="resume-item">
<h4>Graphic Design Specialist</h4>
<h5>2019 - 2020</h5>
<p><em>Stepping Stone Advertising, New York, NY</em></p>
<ul>
<li>Developed marketing programs including logos, brochures, infographics, presentations, and advertisements.</li>
<li>Effectively managed up to 5 projects concurrently, meeting deadlines and maintaining quality under pressure.</li>
<li>Offered recommendations and consulted with clients to determine the most suitable graphic design solutions.</li>
<li>Generated 4+ design presentations and proposals monthly for clients and account managers.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- End Resume Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio section-bg">
<div class="container">
<div class="section-title">
<h2>Portfolio</h2>
<p>Explore some of our recent projects that showcase our technical expertise and creativity.</p>
</div>
<div class="row" data-aos="fade-up">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-app">App</li>
<li data-filter=".filter-card">Card</li>
<li data-filter=".filter-web">Web</li>
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="100">
<!-- App Development -->
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-1.jpg" class="img-fluid" alt="App Project 1">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-1.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App Project 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>Mobile App Project</h4>
<p>Mobile Application Development</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-2.jpg" class="img-fluid" alt="App Project 2">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-2.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App Project 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>Mobile App Project</h4>
<p>Mobile Application Development</p>
</div>
</div>
</div>
<!-- Web Development -->
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-3.jpg" class="img-fluid" alt="Web Project 1">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-3.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web Project 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>Website Project</h4>
<p>Website Development</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-4.jpg" class="img-fluid" alt="Web Project 2">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-4.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Web Project 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>Website Project</h4>
<p>Website Development</p>
</div>
</div>
</div>
<!-- Card Design -->
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-5.jpg" class="img-fluid" alt="Card Project 1">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-5.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card Project 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>Card Design Project</h4>
<p>Graphic Design</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-card">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-6.jpg" class="img-fluid" alt="Card Project 2">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-6.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Card Project 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>Card Design Project</h4>
<p>Graphic Design</p>
</div>
</div>
</div>
<!-- Database Management -->
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-7.jpg" class="img-fluid" alt="Database Project 1">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-7.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Database Project 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>Database Management Project</h4>
<p>Database Administration</p>
</div>
</div>
</div>
<!-- System Analysis -->
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-8.jpg" class="img-fluid" alt="System Analysis Project 1">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-8.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="System Analysis Project 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>System Analysis Project</h4>
<p>Business Analysis</p>
</div>
</div>
</div>
<!-- Network Engineering -->
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-9.jpg" class="img-fluid" alt="Network Engineering Project 1">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-9.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Network Engineering Project 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>Network Engineering Project</h4>
<p>Network Design</p>
</div>
</div>
</div>
<!-- IT Consulting -->
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-1.jpg" class="img-fluid" alt="IT Consulting Project 1">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-1.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="IT Consulting Project 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>IT Consulting Project</h4>
<p>Business Analysis</p>
</div>
</div>
</div>
<!-- Quality Assurance -->
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-2.jpg" class="img-fluid" alt="Quality Assurance Project 1">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-2.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Quality Assurance Project 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>Quality Assurance Project</h4>
<p>Software Testing</p>
</div>
</div>
</div>
<!-- Software Architecture -->
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-3.jpg" class="img-fluid" alt="Software Architecture Project 1">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-3.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Software Architecture Project 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>Software Architecture Project</h4>
<p>Software Design</p>
</div>
</div>
</div>
<!-- Business Analysis -->
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-4.jpg" class="img-fluid" alt="Business Analysis Project 1">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-4.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Business Analysis Project 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>Business Analysis Project</h4>
<p>Requirements Gathering</p>
</div>
</div>
</div>
<!-- Project Management -->
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-5.jpg" class="img-fluid" alt="Project Management Project 1">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-5.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Project Management Project 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>Project Management Project</h4>
<p>Project Planning</p>
</div>
</div>
</div>
<!-- Technical Writing -->
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-6.jpg" class="img-fluid" alt="Technical Writing Project 1">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-6.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Technical Writing Project 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>Technical Writing Project</h4>
<p>Documentation</p>
</div>
</div>
</div>
<!-- Graphic Design -->
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-7.jpg" class="img-fluid" alt="Graphic Design Project 1">
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-7.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="Graphic Design Project 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" title="More Details"><i class="bx bx-link"></i></a>
</div>
<div class="portfolio-info">
<h4>Graphic Design Project</h4>
<p>Design and Layout</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Portfolio Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container">
<div class="section-title">
<h2>Services</h2>
<p>Our expertise covers a wide range of technical domains, ensuring that we can meet your specific needs effectively and efficiently.</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up">
<div class="icon"><i class="bi bi-laptop"></i></div>
<h4 class="title"><a href="#">Web Developer</a></h4>
<p class="description">Expertise in HTML, CSS, JavaScript, and PHP. Proficient in MySQL, Apache, and Linux. Experience in responsive and cross-browser development.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="100">
<div class="icon"><i class="bi bi-app-indicator"></i></div>
<h4 class="title"><a href="#">Application Developer</a></h4>
<p class="description">Expertise in Java, C++, and Python. Proficient in MySQL, Oracle, and Linux. Experience in developing desktop and web applications.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="200">
<div class="icon"><i class="bi bi-phone"></i></div>
<h4 class="title"><a href="#">Mobile Developer</a></h4>
<p class="description">Expertise in Objective C, Swift, and Java. Proficient in MySQL, Oracle, and Linux. Experience in developing iOS and Android applications.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="bi bi-database"></i></div>
<h4 class="title"><a href="#">Database Administrator</a></h4>
<p class="description">Expertise in MySQL, Oracle, and SQL Server. Proficient in Linux and Windows. Experience in managing and maintaining databases.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="400">
<div class="icon"><i class="bi bi-gear"></i></div>
<h4 class="title"><a href="#">System Analyst</a></h4>
<p class="description">Expertise in business analysis and requirements gathering. Proficient in project management and system testing. Experience in developing functional and technical specifications.</p>
</div>
<div class="col-lg-4 col-md-6 icon-box" data-aos="fade-up" data-aos-delay="500">
<div class="icon"><i class="bi bi-server"></i></div>
<h4 class="title"><a href="#">Network Engineer</a></h4>
<p class="description">Expertise in Cisco, Juniper, and Huawei. Proficient in TCP/IP, MPLS, and BGP. Experience in designing, implementing, and troubleshooting networks.</p>
</div>
</div>
</div>
</section>
<!-- End Services Section -->
<!-- ======= Testimonials Section ======= -->
<section id="testimonials" class="testimonials section-bg">
<div class="container">
<div class="section-title">
<h2>Testimonials</h2>
<p>See what others have to say about me:</p>
</div>
<div class="testimonials-slider swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item" data-aos="fade-up">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Working with John has been an exceptional experience. His expertise in web development and attention to detail are truly remarkable. He delivered our project on time and exceeded our expectations. I highly recommend John for any web development project.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-1.jpg" class="testimonial-img" alt="Saul Goodman">
<h3>Saul Goodman</h3>
<h4>CEO & Founder</h4>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="100">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
I had the pleasure of collaborating with Sarah on a design project. Her creativity and attention to detail are outstanding. She consistently delivered high-quality designs that perfectly captured our vision. Sarah is a top-notch designer, and I look forward to working with her again.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-2.jpg" class="testimonial-img" alt="Sara Wilsson">
<h3>Sara Wilsson</h3>
<h4>Designer</h4>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="200">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
I've had the pleasure of working with Jena on multiple projects. Her expertise in business analysis and problem-solving skills are exceptional. Jena's ability to gather requirements and develop effective solutions is truly impressive. I highly recommend her for any business analysis work.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-3.jpg" class="testimonial-img" alt="Jena Karlis">
<h3>Jena Karlis</h3>
<h4>Store Owner</h4>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="300">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Matt has been an invaluable addition to our team. His extensive experience in software testing has significantly improved our product quality. Matt's attention to detail and thoroughness in testing are commendable. I highly recommend him as a QA engineer.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-4.jpg" class="testimonial-img" alt="Matt Brandon">
<h3>Matt Brandon</h3>
<h4>Freelancer</h4>
</div>
</div>
<!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item" data-aos="fade-up" data-aos-delay="400">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
John is a true professional and a pleasure to work with. His project management skills are outstanding, and he always keeps projects on track. John's ability to adapt to changing requirements and mitigate risks makes him an excellent project manager. I highly recommend him.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt="John Larson">
<h3>John Larson</h3>
<h4>Entrepreneur</h4>
</div>
</div>
<!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- End Testimonials Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title">
<h2>Contact</h2>
<p>Feel free to get in touch with me:</p>
</div>
<div class="row" data-aos="fade-in">
<div class="col-lg-5 d-flex align-items-stretch">
<div class="info">
<div class="address">
<i class="bi bi-geo-alt"></i>
<h4>Location:</h4>
<p>Nairobi, Kenya</p>
</div>
<div class="email">
<i class="bi bi-envelope"></i>
<h4>Email:</h4>
<p><a href="mailto:eliakimatamba@gmail.com"> Mail</a></p>
</div>
<div class="phone">
<i class="bi bi-phone"></i>
<h4>Call:</h4>
<p><a href="tel:+254792539497"> Phone</a></p>
</div>
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d12097.433213460943!2d36.81624!3d-1.302008!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x0!2zMjfUtMDDCp9N4F!5e0!3m2!1smk!2sbg!4v1539943755621" frameborder="0" style="border:0; width: 100%; height: 290px;" allowfullscreen></iframe>
</div>
</div>
<div class="col-lg-7 mt-5 mt-lg-0 d-flex align-items-stretch">
<form action="forms/contact.php" method="post" role="form" class="php-email-form">
<div class="row">
<div class="form-group col-md-6">
<label for="name">Your Name</label>
<input type="text" name="name" class="form-control" id="name" required>
</div>
<div class="form-group col-md-6">
<label for="email">Your Email</label>
<input type="email" class="form-control" name="email" id="email" required>
</div>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" class="form-control" name="subject" id="subject" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control" name="message" rows="10" required></textarea>
</div>
<div class="my-3">
<div class="loading">Loading</div>
<div class="error-message"></div>