Links in an HTML document
This text link to a webpage
<a href="somepage.htm">This text link to a webpage</a>
This text link to a website
<a href="http://www.somesite.com">This text link to a website</a>
Use a image for a link that opens in same window
<a href="http://www.harlandscripts.com" target="_self">
<img border="0" src="button1.gif" width="88" height="31">
</a>
Use a image for a link that opens in new window
<a href="http://www.harlandscripts.com" target="_blank">
<img border="0" src="button1.gif" width="88" height="31">
</a>
|
|