How to add a image to a link
This article will explain how you can add a image to your hyperlink. This means you can have someone clicking on a image which will direct them to another URL.
As you should know by now the html code afor a link is:
<a href=”http://www.site-address.com”>Name of Link</a>
To add an image to this link you have to add the image code for the “Name of Link” part.
For example it would be like this:
<a href=”http://www.site-address.com”><img src=”http://www.adressforyourpicture.com”/></a>
Hope this was helpful!