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> img:hover { transform: scaleX(-1); } </style> </head> <body> <h2>Retourner une image</h2> <p>Déplacez votre souris sur l'image.</p> <img src="paris.jpg" alt="Paris" width="400" height="300"> </body> </html>