Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Enregistrer le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <head> <style> .button { affichage: inline-block; padding: 15px 25px; taille de police: 24px; curseur: pointeur; text-align: center; text-decoration: none; couleur: #fff; background-color: #D74444; bordure: aucune; border-radius: 15px; ombre-de-boîte: 0 9px #999; } .button:active { ombre-portée: 0 5px #666; transform: translateY(4px); } </style> </head> <body> <h2>Bouton animé - "Effet Pressé"</h2> <button class="button">Cliquez sur moi</button> </body> </html>