File size: 35,176 Bytes
f6358c3 | 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 | <!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cours complet de Marketing Digital</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.accordion-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
.active + .accordion-content {
max-height: 1000px;
transition: max-height 0.5s ease-in;
}
.progress-bar {
transition: width 0.5s ease-in-out;
}
.case-study-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<header class="bg-gradient-to-r from-blue-600 to-purple-600 text-white py-12 px-4 md:px-8">
<div class="container mx-auto">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Marketing Digital Complet</h1>
<p class="text-xl md:text-2xl mb-6">Cours approfondi avec exercices pratiques, études de cas et ressources</p>
<div class="flex flex-wrap gap-4">
<span class="bg-white text-blue-600 px-4 py-2 rounded-full font-semibold">Niveau: Avancé</span>
<span class="bg-white text-purple-600 px-4 py-2 rounded-full font-semibold">Durée: 12 semaines</span>
<span class="bg-white text-blue-600 px-4 py-2 rounded-full font-semibold">Certification: Oui</span>
</div>
</div>
</header>
<div class="container mx-auto px-4 md:px-8 py-8">
<!-- Navigation -->
<nav class="mb-12 bg-white shadow-md rounded-lg p-4 sticky top-4 z-10">
<ul class="flex flex-wrap justify-center gap-4">
<li><a href="#programme" class="text-blue-600 hover:text-blue-800 font-medium">Programme</a></li>
<li><a href="#exercices" class="text-blue-600 hover:text-blue-800 font-medium">Exercices</a></li>
<li><a href="#cas-pratiques" class="text-blue-600 hover:text-blue-800 font-medium">Études de cas</a></li>
<li><a href="#ressources" class="text-blue-600 hover:text-blue-800 font-medium">Ressources</a></li>
<li><a href="#evaluation" class="text-blue-600 hover:text-blue-800 font-medium">Évaluation</a></li>
</ul>
</nav>
<!-- Introduction -->
<section class="mb-16 bg-white rounded-xl shadow-lg p-8">
<h2 class="text-3xl font-bold text-gray-800 mb-6">Introduction au Marketing Digital</h2>
<div class="grid md:grid-cols-2 gap-8">
<div>
<p class="text-gray-700 mb-4">Le marketing digital représente aujourd'hui plus de 50% des budgets marketing des entreprises. Ce cours vous propose une approche complète et actualisée des principales disciplines du marketing digital.</p>
<p class="text-gray-700 mb-6">À travers 12 modules progressifs, vous acquerrez à la fois des connaissances théoriques solides et des compétences pratiques immédiatement applicables.</p>
<div class="bg-blue-50 border-l-4 border-blue-500 p-4 mb-6">
<p class="text-blue-700 font-medium">Objectifs d'apprentissage :</p>
<ul class="list-disc pl-5 text-gray-700 mt-2">
<li>Maîtriser les fondamentaux du marketing digital</li>
<li>Développer des stratégies digitales performantes</li>
<li>Mettre en œuvre des campagnes multicanales</li>
<li>Analyser et optimiser les performances</li>
</ul>
</div>
</div>
<div class="bg-gray-100 rounded-lg p-6 flex items-center justify-center">
<div class="text-center">
<i class="fas fa-chart-line text-6xl text-blue-500 mb-4"></i>
<p class="text-gray-700 font-medium">Croissance du marché digital : +15% par an</p>
<p class="text-sm text-gray-600 mt-2">Source: Observatoire du Marketing Digital 2023</p>
</div>
</div>
</div>
</section>
<!-- Programme -->
<section id="programme" class="mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-8">Programme détaillé</h2>
<div class="space-y-4">
<!-- Module 1 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<button class="accordion-btn w-full text-left p-6 bg-gray-50 hover:bg-gray-100 transition flex justify-between items-center">
<h3 class="text-xl font-semibold text-gray-800">Module 1 : Fondamentaux du Marketing Digital</h3>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</button>
<div class="accordion-content">
<div class="p-6 pt-0">
<div class="grid md:grid-cols-2 gap-6">
<div>
<h4 class="font-medium text-lg text-gray-700 mb-3">Contenu :</h4>
<ul class="list-disc pl-5 space-y-2 text-gray-600">
<li>Évolution du marketing digital</li>
<li>Principes du marketing digital</li>
<li>Différence avec le marketing traditionnel</li>
<li>Fonctionnement de l'écosystème digital</li>
<li>Tendances actuelles et futures</li>
</ul>
</div>
<div>
<h4 class="font-medium text-lg text-gray-700 mb-3">Compétences visées :</h4>
<ul class="list-disc pl-5 space-y-2 text-gray-600">
<li>Comprendre l'environnement digital</li>
<li>Identifier les acteurs clés</li>
<li>Analyser les tendances du secteur</li>
</ul>
<div class="mt-4">
<h4 class="font-medium text-lg text-gray-700 mb-2">Durée :</h4>
<p class="text-gray-600">8 heures (théorie + pratique)</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Module 2 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<button class="accordion-btn w-full text-left p-6 bg-gray-50 hover:bg-gray-100 transition flex justify-between items-center">
<h3 class="text-xl font-semibold text-gray-800">Module 2 : Stratégie Digitale</h3>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</button>
<div class="accordion-content">
<div class="p-6 pt-0">
<div class="grid md:grid-cols-2 gap-6">
<div>
<h4 class="font-medium text-lg text-gray-700 mb-3">Contenu :</h4>
<ul class="list-disc pl-5 space-y-2 text-gray-600">
<li>Élaboration d'une stratégie digitale</li>
<li>Définition des personas</li>
<li>Customer journey mapping</li>
<li>KPI et tableaux de bord</li>
<li>Benchmark concurrentiel</li>
</ul>
</div>
<div>
<h4 class="font-medium text-lg text-gray-700 mb-3">Compétences visées :</h4>
<ul class="list-disc pl-5 space-y-2 text-gray-600">
<li>Concevoir une stratégie digitale complète</li>
<li>Définir des objectifs SMART</li>
<li>Mettre en place un système de mesure</li>
</ul>
<div class="mt-4">
<h4 class="font-medium text-lg text-gray-700 mb-2">Durée :</h4>
<p class="text-gray-600">10 heures (théorie + pratique)</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Module 3 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<button class="accordion-btn w-full text-left p-6 bg-gray-50 hover:bg-gray-100 transition flex justify-between items-center">
<h3 class="text-xl font-semibold text-gray-800">Module 3 : SEO (Optimisation pour les moteurs de recherche)</h3>
<i class="fas fa-chevron-down transition-transform duration-300"></i>
</button>
<div class="accordion-content">
<div class="p-6 pt-0">
<div class="grid md:grid-cols-2 gap-6">
<div>
<h4 class="font-medium text-lg text-gray-700 mb-3">Contenu :</h4>
<ul class="list-disc pl-5 space-y-2 text-gray-600">
<li>Fonctionnement des moteurs de recherche</li>
<li>Recherche et optimisation des mots-clés</li>
<li>SEO on-page et off-page</li>
<li>SEO technique</li>
<li>SEO local et international</li>
<li>Mesure des performances SEO</li>
</ul>
</div>
<div>
<h4 class="font-medium text-lg text-gray-700 mb-3">Compétences visées :</h4>
<ul class="list-disc pl-5 space-y-2 text-gray-600">
<li>Réaliser un audit SEO complet</li>
<li>Optimiser un site pour le référencement</li>
<li>Mettre en place une stratégie de contenu SEO</li>
</ul>
<div class="mt-4">
<h4 class="font-medium text-lg text-gray-700 mb-2">Durée :</h4>
<p class="text-gray-600">12 heures (théorie + pratique)</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modules 4-12 (similaires) -->
<div class="text-center mt-6">
<button class="bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-6 rounded-lg transition">
Voir les 9 modules restants
</button>
</div>
</div>
</section>
<!-- Exercices pratiques -->
<section id="exercices" class="mb-16 bg-white rounded-xl shadow-lg p-8">
<h2 class="text-3xl font-bold text-gray-800 mb-8">Exercices pratiques</h2>
<div class="grid md:grid-cols-2 gap-8">
<!-- Exercice 1 -->
<div class="border border-gray-200 rounded-lg p-6 hover:border-blue-300 transition">
<div class="flex items-start mb-4">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-search text-blue-600"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Audit SEO</h3>
<p class="text-gray-600">Analysez le référencement d'un site web existant et proposez des optimisations.</p>
</div>
</div>
<div class="flex justify-between items-center mt-4">
<span class="text-sm bg-gray-100 px-3 py-1 rounded-full text-gray-700">Difficulté : Moyenne</span>
<span class="text-sm bg-blue-100 px-3 py-1 rounded-full text-blue-700">Durée : 3h</span>
</div>
</div>
<!-- Exercice 2 -->
<div class="border border-gray-200 rounded-lg p-6 hover:border-purple-300 transition">
<div class="flex items-start mb-4">
<div class="bg-purple-100 p-3 rounded-full mr-4">
<i class="fas fa-ad text-purple-600"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Campagne publicitaire</h3>
<p class="text-gray-600">Créez une campagne publicitaire sur les réseaux sociaux avec ciblage précis.</p>
</div>
</div>
<div class="flex justify-between items-center mt-4">
<span class="text-sm bg-gray-100 px-3 py-1 rounded-full text-gray-700">Difficulté : Élevée</span>
<span class="text-sm bg-purple-100 px-3 py-1 rounded-full text-purple-700">Durée : 5h</span>
</div>
</div>
<!-- Exercice 3 -->
<div class="border border-gray-200 rounded-lg p-6 hover:border-green-300 transition">
<div class="flex items-start mb-4">
<div class="bg-green-100 p-3 rounded-full mr-4">
<i class="fas fa-chart-pie text-green-600"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Analyse de données</h3>
<p class="text-gray-600">Interprétez des données Google Analytics et proposez des actions correctives.</p>
</div>
</div>
<div class="flex justify-between items-center mt-4">
<span class="text-sm bg-gray-100 px-3 py-1 rounded-full text-gray-700">Difficulté : Moyenne</span>
<span class="text-sm bg-green-100 px-3 py-1 rounded-full text-green-700">Durée : 2h</span>
</div>
</div>
<!-- Exercice 4 -->
<div class="border border-gray-200 rounded-lg p-6 hover:border-yellow-300 transition">
<div class="flex items-start mb-4">
<div class="bg-yellow-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-yellow-600"></i>
</div>
<div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Email marketing</h3>
<p class="text-gray-600">Concevez une séquence d'emails automatisée pour un parcours client.</p>
</div>
</div>
<div class="flex justify-between items-center mt-4">
<span class="text-sm bg-gray-100 px-3 py-1 rounded-full text-gray-700">Difficulté : Facile</span>
<span class="text-sm bg-yellow-100 px-3 py-1 rounded-full text-yellow-700">Durée : 1h</span>
</div>
</div>
</div>
<div class="mt-8 text-center">
<button class="bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-6 rounded-lg transition">
Voir tous les exercices (24 au total)
</button>
</div>
</section>
<!-- Études de cas -->
<section id="cas-pratiques" class="mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-8">Études de cas</h2>
<div class="grid md:grid-cols-3 gap-6">
<!-- Cas 1 -->
<div class="case-study-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300">
<div class="h-48 bg-gradient-to-r from-blue-400 to-blue-600 flex items-center justify-center">
<i class="fas fa-shopping-bag text-white text-6xl"></i>
</div>
<div class="p-6">
<span class="text-sm text-blue-600 font-medium">E-commerce</span>
<h3 class="text-xl font-semibold text-gray-800 my-2">Transformation digitale d'une marque de luxe</h3>
<p class="text-gray-600 mb-4">Comment une marque de luxe française a multiplié son CA en ligne par 5 en 18 mois.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">12 pages</span>
<button class="text-blue-600 hover:text-blue-800 font-medium">Lire l'étude</button>
</div>
</div>
</div>
<!-- Cas 2 -->
<div class="case-study-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300">
<div class="h-48 bg-gradient-to-r from-purple-400 to-purple-600 flex items-center justify-center">
<i class="fas fa-mobile-alt text-white text-6xl"></i>
</div>
<div class="p-6">
<span class="text-sm text-purple-600 font-medium">Application mobile</span>
<h3 class="text-xl font-semibold text-gray-800 my-2">Stratégie d'acquisition pour une app de fitness</h3>
<p class="text-gray-600 mb-4">Comment une startup a acquis 500 000 utilisateurs en 6 mois avec un budget limité.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">8 pages</span>
<button class="text-purple-600 hover:text-purple-800 font-medium">Lire l'étude</button>
</div>
</div>
</div>
<!-- Cas 3 -->
<div class="case-study-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300">
<div class="h-48 bg-gradient-to-r from-green-400 to-green-600 flex items-center justify-center">
<i class="fas fa-utensils text-white text-6xl"></i>
</div>
<div class="p-6">
<span class="text-sm text-green-600 font-medium">Restauration</span>
<h3 class="text-xl font-semibold text-gray-800 my-2">Stratégie digitale pour un restaurant gastronomique</h3>
<p class="text-gray-600 mb-4">Comment un restaurant étoilé a augmenté ses réservations de 70% grâce au digital.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">10 pages</span>
<button class="text-green-600 hover:text-green-800 font-medium">Lire l'étude</button>
</div>
</div>
</div>
</div>
<div class="mt-8 text-center">
<button class="bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-6 rounded-lg transition">
Voir toutes les études de cas (9 au total)
</button>
</div>
</section>
<!-- Ressources -->
<section id="ressources" class="mb-16 bg-white rounded-xl shadow-lg p-8">
<h2 class="text-3xl font-bold text-gray-800 mb-8">Ressources pédagogiques</h2>
<div class="grid md:grid-cols-2 gap-8">
<!-- Bibliographie -->
<div>
<h3 class="text-2xl font-semibold text-gray-800 mb-4 flex items-center">
<i class="fas fa-book text-blue-500 mr-3"></i> Bibliographie
</h3>
<ul class="space-y-4">
<li class="border-l-4 border-blue-500 pl-4 py-1">
<p class="font-medium text-gray-800">"Marketing Digital" - Pierre Volle</p>
<p class="text-sm text-gray-600">Dunod, 2023 (5e édition)</p>
</li>
<li class="border-l-4 border-blue-500 pl-4 py-1">
<p class="font-medium text-gray-800">"Digital Marketing Strategy" - Simon Kingsnorth</p>
<p class="text-sm text-gray-600">Kogan Page, 2022</p>
</li>
<li class="border-l-4 border-blue-500 pl-4 py-1">
<p class="font-medium text-gray-800">"Contagious: Why Things Catch On" - Jonah Berger</p>
<p class="text-sm text-gray-600">Simon & Schuster, 2016</p>
</li>
<li class="border-l-4 border-blue-500 pl-4 py-1">
<p class="font-medium text-gray-800">"Hooked: How to Build Habit-Forming Products" - Nir Eyal</p>
<p class="text-sm text-gray-600">Portfolio, 2014</p>
</li>
</ul>
<button class="mt-4 text-blue-600 hover:text-blue-800 font-medium flex items-center">
Voir toute la bibliographie (12 ouvrages)
<i class="fas fa-chevron-right ml-2 text-sm"></i>
</button>
</div>
<!-- Sites et outils -->
<div>
<h3 class="text-2xl font-semibold text-gray-800 mb-4 flex items-center">
<i class="fas fa-globe text-purple-500 mr-3"></i> Sites et outils
</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-purple-100 p-2 rounded-lg mr-4">
<i class="fas fa-chart-line text-purple-600"></i>
</div>
<div>
<a href="#" class="font-medium text-gray-800 hover:text-purple-600">Google Analytics Academy</a>
<p class="text-sm text-gray-600">Formations gratuites sur l'analyse de données</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-100 p-2 rounded-lg mr-4">
<i class="fab fa-google text-purple-600"></i>
</div>
<div>
<a href="#" class="font-medium text-gray-800 hover:text-purple-600">Google Skillshop</a>
<p class="text-sm text-gray-600">Certifications sur les outils Google Ads</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-100 p-2 rounded-lg mr-4">
<i class="fas fa-search text-purple-600"></i>
</div>
<div>
<a href="#" class="font-medium text-gray-800 hover:text-purple-600">MOZ Blog</a>
<p class="text-sm text-gray-600">Ressources SEO de référence</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-100 p-2 rounded-lg mr-4">
<i class="fas fa-envelope-open-text text-purple-600"></i>
</div>
<div>
<a href="#" class="font-medium text-gray-800 hover:text-purple-600">HubSpot Academy</a>
<p class="text-sm text-gray-600">Formations en inbound marketing</p>
</div>
</div>
</div>
<button class="mt-4 text-purple-600 hover:text-purple-800 font-medium flex items-center">
Voir toutes les ressources (18 sites)
<i class="fas fa-chevron-right ml-2 text-sm"></i>
</button>
</div>
</div>
</section>
<!-- Évaluation -->
<section id="evaluation" class="mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-8">Évaluation et certification</h2>
<div class="bg-white rounded-xl shadow-lg overflow-hidden">
<div class="grid md:grid-cols-2">
<div class="p-8">
<h3 class="text-2xl font-semibold text-gray-800 mb-4">Processus d'évaluation</h3>
<ul class="space-y-4">
<li class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-check text-blue-600"></i>
</div>
<div>
<p class="font-medium text-gray-800">Quiz hebdomadaires</p>
<p class="text-sm text-gray-600">Validation des connaissances théoriques</p>
</div>
</li>
<li class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-tasks text-blue-600"></i>
</div>
<div>
<p class="font-medium text-gray-800">Projets pratiques</p>
<p class="text-sm text-gray-600">Application des compétences sur des cas concrets</p>
</div>
</li>
<li class="flex items-start">
<div class="bg-blue-100 p-2 rounded-full mr-4">
<i class="fas fa-file-alt text-blue-600"></i>
</div>
<div>
<p class="font-medium text-gray-800">Mémoire professionnel</p>
<p class="text-sm text-gray-600">Analyse d'une problématique marketing digitale</p>
</div>
</li>
</ul>
</div>
<div class="bg-blue-50 p-8 flex flex-col justify-center">
<div class="mb-6">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Certification</h3>
<p class="text-gray-700 mb-4">À l'issue du cours, les étudiants ayant validé toutes les évaluations recevront une certification reconnue par l'Association Française du Marketing Digital.</p>
<div class="flex items-center">
<i class="fas fa-award text-yellow-500 text-3xl mr-4"></i>
<p class="font-medium text-gray-800">Certification en Marketing Digital Avancé</p>
</div>
</div>
<div>
<h4 class="text-lg font-medium text-gray-800 mb-2">Votre progression</h4>
<div class="w-full bg-gray-200 rounded-full h-4 mb-2">
<div class="progress-bar bg-blue-600 h-4 rounded-full" style="width: 25%"></div>
</div>
<p class="text-sm text-gray-600">25% du cours complété</p>
</div>
</div>
</div>
</div>
</section>
<!-- Inscription -->
<section class="bg-gradient-to-r from-blue-500 to-blue-700 text-white rounded-xl shadow-lg p-8 mb-16">
<div class="max-w-3xl mx-auto text-center">
<h2 class="text-3xl font-bold mb-4">Prêt à maîtriser le marketing digital ?</h2>
<p class="text-xl mb-8">Rejoignez notre formation complète et devenez un expert en marketing digital.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-white text-blue-600 hover:bg-gray-100 font-semibold py-3 px-8 rounded-lg transition">
S'inscrire maintenant
</button>
<button class="bg-transparent border-2 border-white hover:bg-blue-600 font-semibold py-3 px-8 rounded-lg transition">
Programme détaillé
</button>
</div>
</div>
</section>
</div>
<footer class="bg-gray-800 text-white py-12 px-4">
<div class="container mx-auto">
<div class="grid md:grid-cols-4 gap-8">
<div>
<h3 class="text-xl font-semibold mb-4">Marketing Digital</h3>
<p class="text-gray-400">Formation complète et actualisée pour les professionnels du marketing et de la communication.</p>
</div>
<div>
<h4 class="font-semibold mb-4">Navigation</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Accueil</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Programme</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Équipe pédagogique</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Témoignages</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Ressources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">FAQ</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold mb-4">Contact</h4>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-envelope text-gray-400 mr-2"></i>
<span class="text-gray-400">contact@marketing-digital.fr</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone-alt text-gray-400 mr-2"></i>
<span class="text-gray-400">01 23 45 67 89</span>
</li>
</ul>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 Formation Marketing Digital. Tous droits réservés.</p>
</div>
</div>
</footer>
<script>
// Accordion functionality
document.querySelectorAll('.accordion-btn').forEach(button => {
button.addEventListener('click', () => {
const content = button.nextElementSibling;
const icon = button.querySelector('i');
button.classList.toggle('active');
if(button.classList.contains('active')) {
icon.style.transform = 'rotate(180deg)';
} else {
icon.style.transform = 'rotate(0deg)';
}
});
});
// Simulate progress
setTimeout(() => {
document.querySelector('.progress-bar').style.width = '25%';
}, 500);
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=AMC17O5/https-huggingface-co-wellcom" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |