Tutorial – How to a create a link to another page
Thursday, May 21st, 2009If you have a website and you want to add a new link to another page. The way you do this is to use the ‘<a>’ tag. Below is an example.
<a href=”http://www.jcfrost.com/”>Visit jcfrost.com</a>
The website url you are linking to is inside the quotes after ‘href=’ and the text you want to appear on your website will be in between ‘<a href=”http://www.jcfrost.com/”>’ and ‘</a>’.
