Tips
Create image as hyperlink
By following code
<a href="http://technofreak-cooldude.blogspot.com"><img src="http://preview.shareapic.net/preview5/015803071.jpg"></a>
Incase you want to give external link, but don't trust the site
use rel="nofollow"
for e.g.
<a href="yahoo.com" rel="nofollow">yahoo.com</a>
Introduction
Linking webpages with each other is perhaps one of the most usefull and powerfull feature of HTML Link can send the user to your own website's particular page or some one else website. In techanical language link is known as hyperlink.
Step 1:
Anchor tag is used for linking webpages i.e. <a>.
Anchor tag needs to be closed like </a>
So Proper format of using anchor tag is
<a href="Your link">Text where you can click</a>
If you want to make a link to mahalo.comthen
<a href="http://mahalo.com">Visit Mahalo</a>
Step 2:Open Link In New Tab
Some webmaster may use your website by frame thereby increasing their site ranking.
To prevent it you can tell browser to open the link in new tab by target="_blank"
<a href="http://mahalo.com" target="_blank">Visit Mahalo.com</a>
Step 3:Give Information about Link
if you want to give information about the link whenever anyone put their cursor on link.Then You can use title="".For e.g.
<a href="http://mahalo.com" title="Find Answers to Your Questions">Visit Mahalo</a>