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> a:link { text-decoration: none; } a:visited { text-decoration: none; } a:hover { text-decoration: underline; } a:active { text-decoration: underline; } </style> </head> <body> <h1>Stylez un lien avec text-decoration</h1> <p><a href="default.html" target="_blank">Ceci est un lien</a></p> <p><b>Remarque :</b>:hover doit venir après :link et :visited pour être efficace.</p> <p><b>Remarque :</b>:active doit venir après :hover pour être efficace.</p> </body> </html>