Changing Link Color
This is an article for the coding section, its going to cover in brief how you can simply change the color of your link with a short html command.
Changing link color makes your links stand out and more noticeable which will help increase your click through rate. Its also a good idea to change your link color so it matches your page theme nicely.
I am sure you are familiar with the html link code already but here is an example of just the html link code.
<a href=”http://google.com”>Google</a>
If I wanted to change the link color you could do this using several methods, the popular method is using a style sheet, and the second method is simply adding a html command before and after the link, so for example:
<a href=””http://google.com””><font color=”red”>Google </font> </a>
As you can see I have simply used the font color html command in-between the link code, the link should now appear red using the above command.