Getting Started
HTML: The Basics
More Than HTML: Audio
Help Desk: Quick Reference Free Stuff:
|
Adding ImagesTo add an image to your page, you will need to have the image in your directory and uploaded to the server where your page is stored. Although you do not need to have the image in the same directory, for beginners it is easier to "call" the image if it is in the same directory as the page. You can call to your page images from: the same directory on your server, another directory in your domain, and from any URL outside your server domain. Calling an Image from the Same Directory <img src="yourimage.gif"> It is a good idea to specify the height and width of the images:
Note: "px" is the pixel size of the image. You must specify the value as an integer.
Calling an Image from Another Directory You can call the images from another directory on your computer. Note: You must have the same directory structure on the server and the image must be in the directory specified. Otherwise the image will appear broken. For a lower directory:
Calling an Image from another URL Be sure when calling an image from a URL from outside your domain that you have permission to use the image. <a href="http://www.domain.com/directory/image.gif">
|