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> h1 { text-decoration: surligné; } h2 { text-decoration: line-through; } h3 { text-decoration: underline; } p.ex { text-decoration: surligné souligné; } </style> </head> <body> <h1>Texte de décoration en surlignage</h1> <h2>Texte décoré avec une ligne barrée</h2> <h3>Texte de décoration souligné</h3> <p class="ex">Décoration de texte en surlignage et en soulignement.</p> <p><strong>Remarque :</strong> It is not recommended to underline text that is not a link, as this often confuses the reader.</p> </body> </html>