Hyperlink Colors & Font Change

Here are the properties of the hyperlink colors and if you want you can also change the font to indicate a hyperlink.
You can also change the background color when the mouse is moved over the link.
W3 School HTML Link website.

Google website. Yahoo website. Use Google Fonts

  
Hyperlink colors and hover color and Change of Text

<style>
a {color: #blue;
font-family: "Georgia", "Times New Roman", serif;}
a:visited {color: #0080ff;}     /* blue */

a:hover, a:active, a:focus { color: #ff0000;   /* red */
background-color: #FFFFFF;     /* white */
text-decoration:none; }
</style>