-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewpage.html
More file actions
812 lines (724 loc) · 27.9 KB
/
newpage.html
File metadata and controls
812 lines (724 loc) · 27.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alfeo Raymond - ICT & Digital Transformation Specialist</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
overflow-x: hidden;
}
/* Header & Navigation */
header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 1rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
backdrop-filter: blur(10px);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-links a {
color: white;
text-decoration: none;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: #f0f0f0;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 120px 2rem 80px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
width: 200%;
height: 200%;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
animation: float 20s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-20px) rotate(1deg); }
}
.hero-content {
position: relative;
z-index: 2;
max-width: 800px;
margin: 0 auto;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
animation: slideInUp 1s ease-out;
}
.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.9;
animation: slideInUp 1s ease-out 0.2s both;
}
.hero-description {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.8;
animation: slideInUp 1s ease-out 0.4s both;
}
.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
animation: slideInUp 1s ease-out 0.6s both;
}
.btn {
padding: 12px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.btn-primary {
background: white;
color: #667eea;
}
.btn-secondary {
background: transparent;
color: white;
border: 2px solid white;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
@keyframes slideInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Main Content */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
section {
padding: 80px 0;
}
h2 {
font-size: 2.5rem;
margin-bottom: 3rem;
text-align: center;
color: #333;
position: relative;
}
h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 2px;
}
/* About Section */
.about-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 4rem;
align-items: center;
}
.about-text {
font-size: 1.1rem;
line-height: 1.8;
color: #555;
}
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.stat {
text-align: center;
padding: 1.5rem;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
border-radius: 15px;
transition: transform 0.3s ease;
}
.stat:hover {
transform: translateY(-5px);
}
.stat-number {
font-size: 2rem;
font-weight: bold;
color: #667eea;
display: block;
}
.stat-label {
color: #666;
font-size: 0.9rem;
margin-top: 0.5rem;
}
/* Experience Section */
.experience-timeline {
position: relative;
max-width: 900px;
margin: 0 auto;
}
.timeline-item {
background: white;
margin: 2rem 0;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
position: relative;
transition: all 0.3s ease;
}
.timeline-item:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.timeline-item::before {
content: '';
position: absolute;
left: -20px;
top: 2rem;
width: 15px;
height: 15px;
background: #667eea;
border-radius: 50%;
border: 3px solid white;
box-shadow: 0 0 0 3px #667eea;
}
.job-title {
font-size: 1.3rem;
font-weight: bold;
color: #333;
margin-bottom: 0.5rem;
}
.company {
color: #667eea;
font-weight: 600;
margin-bottom: 0.5rem;
}
.duration {
color: #888;
font-size: 0.9rem;
margin-bottom: 1rem;
}
.job-description {
color: #555;
line-height: 1.6;
}
/* Skills Section */
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
}
.skill-category {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.skill-category:hover {
transform: translateY(-5px);
}
.skill-category h3 {
color: #667eea;
margin-bottom: 1.5rem;
font-size: 1.2rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.skill-tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.skill-tag {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 0.5rem 1rem;
border-radius: 25px;
font-size: 0.9rem;
transition: transform 0.3s ease;
}
.skill-tag:hover {
transform: scale(1.05);
}
/* Contact Section */
.contact {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.contact-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 3rem;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.contact-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem;
background: white;
border-radius: 10px;
transition: transform 0.3s ease;
}
.contact-item:hover {
transform: translateX(5px);
}
.contact-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.social-links {
display: flex;
gap: 1rem;
justify-content: center;
margin-top: 2rem;
}
.social-link {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-decoration: none;
transition: all 0.3s ease;
}
.social-link:hover {
transform: translateY(-3px) scale(1.1);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
/* Footer */
footer {
background: #333;
color: white;
text-align: center;
padding: 2rem 0;
}
/* Mobile Responsive */
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hero h1 {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.about-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.cta-buttons {
flex-direction: column;
align-items: center;
}
.stats {
grid-template-columns: repeat(2, 1fr);
}
.timeline-item::before {
display: none;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>
<nav>
<div class="logo">Alfeo Raymond</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section class="hero" id="home">
<div class="hero-content">
<h1>Alfeo Raymond</h1>
<p class="hero-subtitle">ICT & Digital Transformation Specialist</p>
<p class="hero-description">
Bridging technology and social impact through human-centered design,
software engineering, and community empowerment across Tanzania and beyond.
</p>
<div class="cta-buttons">
<a href="#contact" class="btn btn-primary">
<i class="fas fa-envelope"></i> Get in Touch
</a>
<a href="#experience" class="btn btn-secondary">
<i class="fas fa-user"></i> View Experience
</a>
</div>
</div>
</section>
<!-- About Section -->
<section id="about">
<div class="container">
<h2>About Me</h2>
<div class="about-content">
<div>
<div class="stats">
<div class="stat">
<span class="stat-number">5+</span>
<span class="stat-label">Years Experience</span>
</div>
<div class="stat">
<span class="stat-number">22+</span>
<span class="stat-label">Certifications</span>
</div>
<div class="stat">
<span class="stat-number">131K+</span>
<span class="stat-label">Lives Impacted</span>
</div>
<div class="stat">
<span class="stat-number">10+</span>
<span class="stat-label">Organizations</span>
</div>
</div>
</div>
<div class="about-text">
<p>
I'm a Tanzanian ICT and Digital Transformation Specialist with a passion for
using technology to solve real-world challenges. Currently serving as ICT Supervisor
at Médecins Sans Frontières (MSF) Switzerland, I bring expertise in software
engineering, human-centered design, and community empowerment.
</p>
<p>
My journey spans humanitarian response, public health innovation, academic systems,
and community education. From implementing AI-driven health platforms to leading
vaccine outreach initiatives that reached over 131,000 families, I'm committed to
building technology that serves people.
</p>
<p>
I hold a Master's in Engineering Management (in progress) from UDSM and a Bachelor's
in Information Technology from CBE. My approach combines technical depth with
human-centered thinking to create solutions that are both innovative and inclusive.
</p>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience" style="background: #f8f9fa;">
<div class="container">
<h2>Professional Experience</h2>
<div class="experience-timeline">
<div class="timeline-item">
<div class="job-title">ICT Supervisor</div>
<div class="company">Médecins Sans Frontières (MSF) Switzerland</div>
<div class="duration">Current</div>
<div class="job-description">
Managing critical ICT infrastructure in emergency response and healthcare settings.
Providing system maintenance, network design, data protection, and capacity building
to field teams and medical staff in challenging humanitarian environments.
</div>
</div>
<div class="timeline-item">
<div class="job-title">GitHub DPG Community Manager</div>
<div class="company">GitHub</div>
<div class="duration">July 2024 - January 2025</div>
<div class="job-description">
Built and managed active online communities through events, content, and contributor
support. Helped onboard new contributors and maintained project workflows on GitHub
for Digital Public Goods initiatives.
</div>
</div>
<div class="timeline-item">
<div class="job-title">Technology for Development (T4D) Officer</div>
<div class="company">Save the Children International</div>
<div class="duration">November 2023 - April 2024</div>
<div class="job-description">
Led design and implementation of AI-driven personalized nutritional guidance solutions
for pregnant women, lactating mothers, and caregivers. Developed mobile health platforms
and trained Community Health Workers on USSD systems.
</div>
</div>
<div class="timeline-item">
<div class="job-title">Human Centered Design (HCD) Consultant</div>
<div class="company">Tanzania Ministry of Health</div>
<div class="duration">April 2023 - November 2023</div>
<div class="job-description">
Led community-centered vaccine intervention design in partnership with UNICEF and UDSM.
Reached 131,088 families (83% of target) and provided vaccination services to 387
zero-dose children through co-creation workshops with 483 stakeholders.
</div>
</div>
<div class="timeline-item">
<div class="job-title">Software and Systems Engineer</div>
<div class="company">University of Dar es Salaam (UDSM)</div>
<div class="duration">November 2019 - November 2023</div>
<div class="job-description">
Managed enterprise database infrastructure across multiple environments supporting Oracle,
SQL Server, PostgreSQL, and MySQL systems. Designed and developed software systems for
operational support and e-learning using Python, Laravel/PHP, JavaScript, and Java.
</div>
</div>
<div class="timeline-item">
<div class="job-title">Learning Facilitator</div>
<div class="company">Community Education Initiative</div>
<div class="duration">June 2019 - December 2021</div>
<div class="job-description">
Co-developed innovative Human-Centered Design curricula for secondary school girls in Tanzania.
Delivered comprehensive training programs combining ICT skills, business development, and
entrepreneurship education, empowering young women to solve real-world problems.
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills">
<div class="container">
<h2>Skills & Expertise</h2>
<div class="skills-grid">
<div class="skill-category">
<h3><i class="fas fa-code"></i> Technical Skills</h3>
<div class="skill-tags">
<span class="skill-tag">Python</span>
<span class="skill-tag">Laravel/PHP</span>
<span class="skill-tag">JavaScript</span>
<span class="skill-tag">Java</span>
<span class="skill-tag">PostgreSQL</span>
<span class="skill-tag">MySQL</span>
<span class="skill-tag">Docker</span>
<span class="skill-tag">Git/GitHub</span>
</div>
</div>
<div class="skill-category">
<h3><i class="fas fa-heart"></i> Human-Centered Design</h3>
<div class="skill-tags">
<span class="skill-tag">User Research</span>
<span class="skill-tag">Journey Mapping</span>
<span class="skill-tag">Co-creation</span>
<span class="skill-tag">Prototyping</span>
<span class="skill-tag">Stakeholder Engagement</span>
<span class="skill-tag">Design Thinking</span>
</div>
</div>
<div class="skill-category">
<h3><i class="fas fa-project-diagram"></i> Project Management</h3>
<div class="skill-tags">
<span class="skill-tag">Agile/Scrum</span>
<span class="skill-tag">Theory of Change</span>
<span class="skill-tag">MEAL</span>
<span class="skill-tag">Risk Management</span>
<span class="skill-tag">Stakeholder Management</span>
<span class="skill-tag">Change Management</span>
</div>
</div>
<div class="skill-category">
<h3><i class="fas fa-cloud"></i> Cloud & Infrastructure</h3>
<div class="skill-tags">
<span class="skill-tag">Google Cloud</span>
<span class="skill-tag">Network Administration</span>
<span class="skill-tag">System Administration</span>
<span class="skill-tag">Cybersecurity</span>
<span class="skill-tag">Database Management</span>
<span class="skill-tag">DevOps</span>
</div>
</div>
<div class="skill-category">
<h3><i class="fas fa-chart-line"></i> Data & AI</h3>
<div class="skill-tags">
<span class="skill-tag">Data Engineering</span>
<span class="skill-tag">Data Analysis</span>
<span class="skill-tag">AI Implementation</span>
<span class="skill-tag">Dashboard Design</span>
<span class="skill-tag">ETL Processes</span>
<span class="skill-tag">Statistics</span>
</div>
</div>
<div class="skill-category">
<h3><i class="fas fa-users"></i> Community & Leadership</h3>
<div class="skill-tags">
<span class="skill-tag">Community Building</span>
<span class="skill-tag">Mentorship</span>
<span class="skill-tag">Training & Facilitation</span>
<span class="skill-tag">Open Source</span>
<span class="skill-tag">Youth Empowerment</span>
<span class="skill-tag">Cross-cultural Communication</span>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="contact" id="contact">
<div class="container">
<h2>Get In Touch</h2>
<div class="contact-content">
<div class="contact-info">
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4>Location</h4>
<p>Dar es Salaam, Tanzania</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4>Email</h4>
<p>alfeoraymond@example.com</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-globe"></i>
</div>
<div>
<h4>Languages</h4>
<p>English, Swahili</p>
</div>
</div>
</div>
<div>
<p style="font-size: 1.1rem; margin-bottom: 2rem; text-align: center;">
I'm always interested in discussing new opportunities, collaborations,
and ways to leverage technology for social impact. Let's connect!
</p>
<div class="social-links">
<a href="https://linkedin.com/in/alfeoraymond" class="social-link" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/alfeoraymond" class="social-link" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://twitter.com/alfeoraymond" class="social-link" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="mailto:alfeoraymond@example.com" class="social-link">
<i class="fas fa-envelope"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>© 2025 Alfeo Raymond. All rights reserved. | Building technology that serves people.</p>
</div>
</footer>
<script>
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Add scroll effect to header
window.addEventListener('scroll', () => {
const header = document.querySelector('header');
if (window.scrollY > 100) {
header.style.background = 'rgba(102, 126, 234, 0.95)';
header.style.backdropFilter = 'blur(10px)';
} else {
header.style.background = 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)';
header.style.backdropFilter = 'none';
}
});
// Animate elements on scroll
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, observerOptions);
// Observe timeline items and skill categories
document.querySelectorAll('.timeline-item, .skill-category, .stat').forEach(item => {
item.style.opacity = '0';
item.style.transform = 'translateY(30px)';
item.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
observer.observe(item);
});
</script>
</body>
</html>