20 lines
620 B
HTML
20 lines
620 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Maintenance</title>
|
|
<style>
|
|
body { font-family: sans-serif; text-align: center; padding: 50px; background: #f4f4f4; }
|
|
.card { background: white; padding: 40px; border-radius: 10px; display: inline-block; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
|
|
h1 { color: #333; }
|
|
p { color: #666; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<h1>🛠️ Maintenance en cours</h1>
|
|
<p>Je suis en train de recoller les morceaux.</p>
|
|
<p>Revenez dans quelques instants !</p>
|
|
</div>
|
|
</body>
|
|
</html> |