<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Dynamic Anchor Pseudo-classes</title> <style> a:link { color: blue; } a:visited { text-decoration: none; } a:hover { color: blue; } a:active { color: orange; } a:focus { color: green; } </style> </head> <body> <p>Visit <a href="https://www.simmanchith.com" target="_blank">www.simmanchith.com</a></p> </body> </html>