WEBLEB
Accueil
Éditeur
Connexion
Pro
Français
English
Français
Español
Português
Deutsch
Italiano
हिंदी
tomber
1519
YAHIR
Ouvrir dans l'éditeur
Publiez votre code
Recommandé
19 May 2025
tombereau
25 November 2025
Tomber
HTML
Copy
404 - Page Not Found
404
Oops! It seems you're lost in space...
CSS
Copy
* { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #282c34; font-family: 'Arial', sans-serif; color: white; } .container { text-align: center; } .dancer { position: relative; width: 120px; height: 200px; margin: 0 auto; animation: dance 2s ease-in-out infinite; } .head { width: 60px; height: 60px; background-color: #ffcc00; border-radius: 50%; position: relative; margin: 0 auto; } .body { width: 80px; height: 120px; background-color: #ffcc00; border-radius: 20px; margin: 0 auto; position: relative; top: 20px; } .arms { position: absolute; top: 20px; width: 100%; display: flex; justify-content: space-between; } .arm { width: 20px; height: 80px; background-color: #ffcc00; border-radius: 10px; position: relative; } .leg { width: 20px; height: 60px; background-color: #ffcc00; border-radius: 10px; } .legs { position: absolute; bottom: 0; width: 100%; display: flex; justify-content: space-between; } h1 { margin-top: 20px; font-size: 36px; color: #ffcc00; } @keyframes dance { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(10deg); } 50% { transform: rotate(0); } 75% { transform: rotate(-10deg); } }
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */