Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <style> /* lien non visité */ a:link { color: #ccc; } /* lien visité */ a:visited { color: #095484; } /* souris sur le lien */ a:hover { color: #8ebf42; } /* lien sélécté */ a:active { color: #800000; } </style> </head> <body> <p>Visitez notre <a href="https://www.w3docs.com/">site Web</a>.</p> </body> </html>