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> <body> <h1>Événements HTML JavaScript</h1> <h2>Les attributs onmouseover et onmouseout</h2> <h1 onmouseover="style.color='red'" onmouseout="style.color='black'">Souris sur ce texte</h1> </body> </html>