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 { couleur de fond: #f4511e; bordure: aucune; couleur: blanc; padding: 16px 32px; text-align: center; taille de police: 20px; opacité: 0.6; transition: 0.3s; affichage: inline-block; text-decoration: none; curseur: pointeur; } .button:hover {opacity: 1} </style> </head> <body> <h2>Bouton animé - Effet de fondu en entrée</h2> <button class="button">Survolez-moi</button> </body> </html>