HTML Links
<!DOCTYPE html> <html> <body> <a href="https://www.hyring.com">Visit Hyring</a> <style> a:link { color: green; } a:visited { color: purple; } a:hover { color: darkgreen; } a:active { color: orange; } </style> </body> </html>
<!DOCTYPE html> <html> <body> <a href="https://www.hyring.com">Visit Hyring</a> <style> a:link { color: green; } a:visited { color: purple; } a:hover { color: darkgreen; } a:active { color: orange; } </style> </body> </html>