Simply save the image in some directory; where ever you have your websites files hosted and call it in an image command.
1. Upload 'image.jpg' to the /images/ folder on your host.
2. Make a new page anywhere, lets put it in your root.
3. Add this code where you want your image to appear.
HTML Code:
<img src="./images/image.jpg" alt="HoverText">
/* The dotSlash at the beginning isn't needed */
/* -- dot = Current Directory */
/* -- slash = Folder */
Last edited by KellyAX; 08-01-2009 at 05:22 PM..
|