<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - LEMODJE TADONTSA FORTUNE</title>
<!-- Font Awesome 6 (gratuit) pour les icônes -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
/* ---------- RESET & BASE ---------- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #f8fafc;
color: #1e293b;
line-height: 1.6;
scroll-behavior: smooth;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* ---------- HEADER / NAV ---------- */
header {
background: #ffffff;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
position: sticky;
top: 0;
z-index: 100;
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.85);
border-bottom: 1px solid #e9edf2;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 0;
flex-wrap: wrap;
}
.logo {
font-size: 1.8rem;
font-weight: 700;
background: linear-gradient(135deg, #2563eb, #7c3aed);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -0.5px;
}
.logo span {
color: #1e293b;
-webkit-text-fill-color: #1e293b;
}
.nav-links {
display: flex;
gap: 30px;
list-style: none;
font-weight: 500;
}
.nav-links a {
text-decoration: none;
color: #475569;
transition: color 0.3s;
font-size: 1rem;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: #2563eb;
transition: width 0.3s;
}
.nav-links a:hover {
color: #2563eb;
}
.nav-links a:hover::after {
width: 100%;
}
/* ---------- HERO SECTION ---------- */
.hero {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
padding: 60px 0 40px;
gap: 40px;
min-height: 80vh;
}
.hero-content {
flex: 1 1 500px;
}
.hero-content .badge {
background: #dbeafe;
color: #1d4ed8;
padding: 6px 18px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 600;
display: inline-block;
margin-bottom: 15px;
}
.hero-content h1 {
font-size: 3.2rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 15px;
}
.hero-content h1 .highlight {
background: linear-gradient(135deg, #2563eb, #7c3aed);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-content p {
font-size: 1.2rem;
color: #64748b;
max-width: 550px;
margin-bottom: 30px;
}
.btn-group {
display: flex;
gap: 15px;
flex-wrap: wrap;
}
.btn {
display: inline-block;
padding: 12px 32px;
border-radius: 50px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
border: 2px solid transparent;
}
.btn-primary {
background: #2563eb;
color: white;
box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover {
background: #1d4ed8;
transform: translateY(-3px);
box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}
.btn-secondary {
background: transparent;
color: #1e293b;
border-color: #cbd5e1;
}
.btn-secondary:hover {
border-color: #2563eb;
color: #2563eb;
transform: translateY(-3px);
}
.hero-image {
flex: 1 1 300px;
text-align: center;
}
.hero-image .avatar {
width: 300px;
height: 300px;
background: linear-gradient(135deg, #2563eb20, #7c3aed20);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 8rem;
color: #2563eb;
margin: 0 auto;
border: 4px solid white;
box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}
/* ---------- SKILLS (carrousel automatique) ---------- */
.skills-section {
background: white;
padding: 50px 0;
border-radius: 30px;
margin: 30px 0;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}
.skills-section h2 {
text-align: center;
font-size: 2rem;
margin-bottom: 30px;
}
.skills-marquee {
overflow: hidden;
white-space: nowrap;
padding: 20px 0;
position: relative;
}
.skills-marquee::before,
.skills-marquee::after {
content: '';
position: absolute;
top: 0;
width: 100px;
height: 100%;
z-index: 2;
}
.skills-marquee::before {
left: 0;
background: linear-gradient(to right, white, transparent);
}
.skills-marquee::after {
right: 0;
background: linear-gradient(to left, white, transparent);
}
.skills-track {
display: inline-flex;
gap: 50px;
animation: scroll 25s linear infinite;
}
.skill-item {
font-size: 1.3rem;
font-weight: 600;
color: #334155;
background: #f1f5f9;
padding: 12px 30px;
border-radius: 50px;
display: inline-flex;
align-items: center;
gap: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.skill-item i {
color: #2563eb;
font-size: 1.6rem;
}
@keyframes scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
/* ---------- PROJETS SECTION ---------- */
.projets-section {
padding: 60px 0;
}
.projets-section h2 {
text-align: center;
font-size: 2.2rem;
margin-bottom: 10px;
}
.projets-section .sous-titre {
text-align: center;
color: #64748b;
margin-bottom: 40px;
}
.grille {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.carte-projet {
background: white;
padding: 30px 25px;
border-radius: 24px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
transition: all 0.4s;
border: 1px solid #f1f5f9;
text-align: center;
}
.carte-projet:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
border-color: #2563eb30;
}
.carte-projet .icone {
font-size: 2.8rem;
margin-bottom: 15px;
color: #2563eb;
}
.carte-projet h3 {
font-size: 1.4rem;
margin-bottom: 8px;
}
.carte-projet p {
color: #64748b;
font-size: 0.95rem;
margin-bottom: 18px;
}
.carte-projet .btn-projet {
display: inline-block;
padding: 8px 25px;
border-radius: 50px;
background: #f1f5f9;
color: #1e293b;
text-decoration: none;
font-weight: 500;
transition: all 0.3s;
}
.carte-projet .btn-projet:hover {
background: #2563eb;
color: white;
}
/* ---------- FOOTER ---------- */
footer {
text-align: center;
padding: 40px 0 20px;
border-top: 1px solid #e9edf2;
color: #94a3b8;
}
footer .socials {
display: flex;
justify-content: center;
gap: 25px;
margin-bottom: 20px;
}
footer .socials a {
color: #475569;
font-size: 1.5rem;
transition: 0.3s;
}
footer .socials a:hover {
color: #2563eb;
transform: translateY(-3px);
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
.hero-content h1 {
font-size: 2.4rem;
}
.hero-image .avatar {
width: 200px;
height: 200px;
font-size: 5rem;
}
.nav-links {
gap: 15px;
font-size: 0.9rem;
}
.skills-track {
gap: 30px;
}
.skill-item {
font-size: 1rem;
padding: 8px 20px;
}
.grille {
grid-template-columns: 1fr;
}
}
@media (max-width: 480px) {
nav {
flex-direction: column;
gap: 10px;
}
}
</style>
</head>
<body>
<!-- ========== HEADER ========== -->
<header>
<div class="container">
<nav>
<div class="logo">L.T.F <span>Portfolio</span></div>
<ul class="nav-links">
<li><a href="#projets">Projets</a></li>
<li><a href="#skills">Compétences</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- ========== HERO ========== -->
<section class="hero container">
<div class="hero-content">
<span class="badge">👋 Bienvenue sur mon portfolio</span>
<h1>Je suis <span class="highlight">LEMODJE TADONTSA FORTUNE</span></h1>
<p>Étudiant passionné par le développement web et la création de solutions digitales modernes.</p>
<div class="btn-group">
<a href="#projets" class="btn btn-primary"><i class="fas fa-arrow-down"></i> Voir mes projets</a>
<a href="#contact" class="btn btn-secondary"><i class="fas fa-envelope"></i> Me contacter</a>
</div>
</div>
<div class="hero-image">
<div class="avatar">👨💻</div>
</div>
</section>
<!-- ========== SKILLS (carrousel automatique) ========== -->
<section id="skills" class="skills-section container">
<h2>⚡ Technologies que j'utilise</h2>
<div class="skills-marquee">
<div class="skills-track">
<!-- Première série -->
<span class="skill-item"><i class="fab fa-html5"></i> HTML5</span>
<span class="skill-item"><i class="fab fa-css3-alt"></i> CSS3</span>
<span class="skill-item"><i class="fab fa-js"></i> JavaScript</span>
<span class="skill-item"><i class="fab fa-php"></i> PHP</span>
<span class="skill-item"><i class="fab fa-python"></i> Python</span>
<span class="skill-item"><i class="fas fa-database"></i> MySQL</span>
<span class="skill-item"><i class="fab fa-git-alt"></i> Git</span>
<span class="skill-item"><i class="fab fa-wordpress"></i> WordPress</span>
<!-- Deuxième série (identique pour l'effet infini) -->
<span class="skill-item"><i class="fab fa-html5"></i> HTML5</span>
<span class="skill-item"><i class="fab fa-css3-alt"></i> CSS3</span>
<span class="skill-item"><i class="fab fa-js"></i> JavaScript</span>
<span class="skill-item"><i class="fab fa-php"></i> PHP</span>
<span class="skill-item"><i class="fab fa-python"></i> Python</span>
<span class="skill-item"><i class="fas fa-database"></i> MySQL</span>
<span class="skill-item"><i class="fab fa-git-alt"></i> Git</span>
<span class="skill-item"><i class="fab fa-wordpress"></i> WordPress</span>
</div>
</div>
</section>
<!-- ========== PROJETS ========== -->
<section id="projets" class="projets-section container">
<h2>📂 Mes projets</h2>
<p class="sous-titre">Voici quelques-uns des projets que j'ai réalisés.</p>
<div class="grille">
<!-- ⚠️ REMPLACEZ "nom_dossier_1" par le nom EXACT de votre dossier -->
<div class="carte-projet">
<div class="icone">🖥️</div>
<h3>Projet 1</h3>
<p>Description courte du projet. Technologie utilisée.</p>
<a href="GESCOM" class="btn-projet">Voir le projet →</a>
</div>
<div class="carte-projet">
<div class="icone">📱</div>
<h3>Projet 2</h3>
<p>Description courte du projet. Technologie utilisée.</p>
<a href="CRUD" class="btn-projet">Voir le projet →</a>
</div>
<div class="carte-projet">
<div class="icone">⚡</div>
<h3>Projet 3</h3>
<p>Description courte du projet. Technologie utilisée.</p>
<a href="incription" class="btn-projet">Voir le projet →</a>
</div>
<div class="carte-projet">
<div class="icone">⚡</div>
<h3>Projet 3</h3>
<p>Description courte du projet. Technologie utilisée.</p>
<a href="biblio" class="btn-projet">Voir le projet →</a>
</div>
<!-- Ajoutez ou supprimez des cartes selon le nombre de vos projets -->
</div>
</section>
<!-- ========== CONTACT ========== -->
<section id="contact" class="container" style="padding: 50px 0; text-align: center;">
<h2 style="font-size: 2rem;">📬 Me contacter</h2>
<p style="color: #64748b; max-width: 500px; margin: 10px auto 30px;">
Si vous souhaitez échanger sur un projet ou une opportunité, n'hésitez pas !
</p>
<a href="mailto:votre-email@example.com" class="btn btn-primary" style="font-size: 1.1rem;">
<i class="fas fa-envelope"></i> m'envoyer un email
</a>
</section>
<!-- ========== FOOTER ========== -->
<footer>
<div class="container">
<div class="socials">
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-linkedin-in"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
<p>© 2026 - LEMODJE TADONTSA FORTUNE. Tous droits réservés.</p>
</div>
</footer>
<!-- ========== Petit JS pour le scroll fluide ========== -->
<script>
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'
});
}
});
});
</script>
</body>
</html>