Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Sauvegarder le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <head> <style> del {background-color: tomate;} ins {background-color: yellow;} </style> </head> <body> <h1>Les éléments del et ins + CSS</h1> <p>Ma couleur préférée est<del>bleu</del> <ins>rouge</ins>!</p> </body> </html>