Add a relative link
PHP Code:
<a href="page.html">My page</a>
Add an absolute link:
PHP Code:
<a href="http://www.pcmasterz.com/index.php">PcM`S page</a>
Link to a particular section of a page:
PHP Code:
<a href="page.html#cheesewiz">About Cheese Wiz</a>
Add an email link:
PHP Code:
<a href="mailto:sunny@pcmasterz.com">Email Scottie</a>
Specify a subject to an email link:
PHP Code:
<a href="mailto:sunny@pcmasterz.com?subject=Beam Me Up!">Email Scottie</a>
Eliminate the underline in a link:
PHP Code:
<a href="mailto:sunny@pcmasterz.com" style="text-decoration:none">Email Scottie</a>
Making an image link:
PHP Code:
<a href="page.html"><img src="myimage.gif" width="123" height="456" alt="My Image"></a>
Get rid of the blue border around an image link:
PHP Code:
<a href="page.html"><img src="myimage.gif" width="123" height="456" alt="My Image" border="0"></a>