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-line: surligné; text-decoration-color: red; } h2 { text-decoration-line: ligne-traversée; text-decoration-color: blue; } h3 { text-decoration-line: souligner; text-decoration-color: green; } p { text-decoration-line: surligné souligné; text-decoration-color: purple; } </style> </head> <body> <h1>Texte de décoration en surlignage</h1> <h2>Texte avec une décoration barrée</h2> <h3>Texte décoratif souligné</h3> <p>Décoration de texte en surlignage et en soulignement.</p> </body> </html>