
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Uzima Gerishomo - Profil Professionnel</title>
<style>
:root {
--primary-color: #2c3e50;
--accent-color: #3498db;
--text-color: #333;
--light-bg: #f5f6fa;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', sans-serif;
line-height: 1.6;
color: var(--text-color);
background: var(--light-bg);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background: var(--primary-color);
color: white;
padding: 2rem 0;
text-align: center;
margin-bottom: 2rem;
}
.profile-img {
width: 150px;
height: 150px;
border-radius: 50%;
background: var(--accent-color);
margin: 0 auto 1rem;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
color: white;
}
.section {
background: white;
border-radius: 10px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
h2 {
color: var(--accent-color);
margin-bottom: 1rem;
}
.skills {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1rem;
}
.skill-tag {
background: var(--accent-color);
color: white;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
}
@media (max-width: 768px) {
.container {
padding: 10px;
}
h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<header>
<div class="profile-img">UG</div>
<h1>Uzima Gerishomo</h1>
<p>Entrepreneur Digital | Développeur Web | Ingénieur Logiciel</p>
</header>
<div class="container">
<div class="section">
<h2>À Propos</h2>
<p>Entrepreneur visionnaire, développeur web et ingénieur logiciel basé à Goma, passionné par la transformation digitale. Spécialisé dans la création de solutions numériques innovantes qui améliorent l'efficacité et la croissance des entreprises.</p>
</div>
<div class="section">
<h2>Compétences Principales</h2>
<div class="skills">
<span class="skill-tag">Développement Web</span>
<span class="skill-tag">Ingénierie Logicielle</span>
<span class="skill-tag">Gestion de Projet</span>
<span class="skill-tag">Innovation Digitale</span>
</div>
</div>
<div class="section">
<h2>Vision et Passion</h2>
<ul>
<li>Avancement Technologique : Repousser les limites de l'innovation</li>
<li>Excellence en Programmation : Maintenir les meilleures pratiques</li>
<li>Autonomisation Communautaire : Construire un écosystème numérique vibrant</li>
</ul>
</div>
</div>
<script>
// Animation des éléments au défilement
document.addEventListener('DOMContentLoaded', function() {
const sections = document.querySelectorAll('.section');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
entry.target.style.transform = 'translateY(0)';
}
});
});
sections.forEach(section => {
section.style.opacity = 0;
section.style.transform = 'translateY(20px)';
section.style.transition = 'all 0.5s ease-out';
observer.observe(section);
});
});
</script>
</body>
</html>