Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> p { font-size: 20px; } /* lien non visité */ a:link { color: #ccc; } /* lien visité */ a:visited { color: #1c87c9; } /* souris sur le lien */ a:hover { color: #8ebf42; } /* lien sélectionné */ a:active { color: #666; } </style> </head> <body> <h2>Exemple du sélecteur :link</h2> <p>Visitez notre <a href="https://fr.w3docs.com/">website</a>. </p> </body> </html>