|
Here
is a sample. If your images are in "/html/images" and your
html files are in "/html" put the following tag in your
code:
<img src="images/picture.jpg">
where "picture.jpg" is the name of the file you want to show up on your page.
If both your images and html files
are in the same directory the tag would be:
<img src="picture.jpg">
Note:
Make sure that the folders in the URLs are Case sensitive.
Example: “<img src="images/picture.jpg">” will
not work if the folder is called “Images”.
For more information on how to use
the "IMG" tag go to: http://www.devguru.com/Technologies/html/quickref/html_img.html
|