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: souligner; text-decoration-style: solid; /* c'est la valeur par défaut */ } h2 { text-decoration-line: underline; text-decoration-style: double; } h3 { text-decoration-line: souligner; text-decoration-style: dotted; } p.ex1 { text-decoration-line: underline; text-decoration-style: dashed; } p.ex2 { text-decoration-line: souligner; text-decoration-style: wavy; } p.ex3 { text-decoration-line: souligner; text-decoration-color: red; text-decoration-style: wavy; } </style> </head> <body> <h1>
En-tête 1
</h1> <h2>
En-tête 2
</h2> <h3>
En-tête 3
</h3> <p class="ex1">Un paragraphe.</p> <p class="ex2">Un autre paragraphe.</p> <p class="ex3">Un autre paragraphe.</p> </body> </html>