Ummm....Okay.
Instead of adding a new line like you did, your code is:
HTML Code:
<a href="http://www.magicalproteachings.com/mpt-magic-competitions" target="_blank"><span class="aimgbox" onclick="window.location.href='http://img132.imageshack.us/img132/4113/mptmagiccomps.jpg';return false" title=""><img src="http://img132.imageshack.us/img132/4113/mptmagiccomps.jpg" border="0" alt="" class="aimg" /></span></a><br />
<br />
<a href="http://www.magicalproteachings.com/videos" target="_blank"><span class="aimgbox" onclick="window.location.href='http://img196.imageshack.us/img196/5863/mptmagicvids.jpg';return false" title=""><img src="http://img196.imageshack.us/img196/5863/mptmagicvids.jpg" border="0" alt="" class="aimg" /></span></a><br />
<br />
<a href="http://www.magicalproteachings.com/visichat" target="_blank"><span class="aimgbox" onclick="window.location.href='http://img27.imageshack.us/img27/7839/mptwebcamtraining.jpg';return false" title=""><img src="http://img27.imageshack.us/img27/7839/mptwebcamtraining.jpg" border="0" alt="" class="aimg" />
Use this:
HTML Code:
<a href="URL HERE" target="_blank"> <img src="IMAGE LINK HERE"> </a>
What you want your code to be:
Code:
<a href="http://www.magicalproteachings.com/mpt-magic-competitions" target="_blank"> <img src="http://img132.imageshack.us/img132/4113/mptmagiccomps.jpg"> </a> <a href="http://www.magicalproteachings.com/videos" target="_blank"> <img src="http://img196.imageshack.us/img196/5863/mptmagicvids.jpg"> </a>
<a href="http://www.magicalproteachings.com/visichat" target="_blank"> <img src="http://img27.imageshack.us/img27/7839/mptwebcamtraining.jpg"> </a>
End result:
Also, a better sitew to use for uploading pictures is
www.TinyPic.com , you should use your own server for site related images.