How to Create Links
February 16, 2007
Create hyperlinks:
Normal link example: CodesPlay
<a href="http://www.website.com“>Website Name</a>
Link actived in new windows exampe: MySpace Codes
<a href="http://www.website.com" target=”_blank”>Website Name</a>
Link with title (rollover text) example: CodesPlay
<a href="http://www.website.com" title=”something you want to describe the link “>Website Name </a>
An image as a link. (width & height are optional)
<a href="http://www.website.com"><img src="http://www.website.com/image.jpg" width="100px" height="200px"/></a>