Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions Mon premier projet
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page de Vente - Offre Spéciale</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-900 text-white font-sans">

<div class="max-w-3xl mx-auto p-6">
<header class="text-center mb-8">
<h1 class="text-3xl font-bold text-green-400">🔥 Offre Spéciale - Abonnement Premium 🔥</h1>
<p class="mt-2 text-gray-300">Profitez de milliers de chaînes, séries & films en illimité 🎬📺</p>
</header>

<div class="bg-gray-800 p-6 rounded-xl shadow-lg">
<h2 class="text-xl font-semibold text-green-300 mb-4">✅ Ce que vous obtenez :</h2>
<ul class="list-disc ml-6 text-gray-200 space-y-2">
<li>+10.000 chaînes TV HD</li>
<li>Films & séries à la demande (VOD)</li>
<li>Compatibilité Android, Smart TV, Box, Fire Stick</li>
<li>Support client 24/7</li>
</ul>

<div class="mt-6 text-center"><p class="text-xl font-bold text-white">💰 À partir de <span class="text-green-400">3.500 FCFA</span></p>
<a href="https://wa.me/0022371481410" class="mt-4 inline-block bg-green-500 hover:bg-green-600 text-white font-bold py-2 px-6 rounded-lg transition">
📲 Commander sur WhatsApp
</a>
</div>
</div>

<footer class="mt-10 text-center text-gray-500 text-sm">
© 2025 - Votre Nom ou Marque
</footer>
</div>

</body>
</html>