Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> a { text-decoration: none; } a:link { color: #000; border-bottom: 1px solid #ff0000; } a:visited { color: #e600e6; border-bottom: 1px solid #b3b3b3; } a:hover { color: #2d8653; border-bottom: 1px solid #000099; } </style> </head> <body> <p>Visit our <a href="https://www.w3docs.com/">website</a>. </p> </body> </html>