Your problem is a simple one, you're using the wrong directory structure to call your images.
Your code is:
Code Sample:
<IMG SRC="/big/dom/xarea51comm/www/area51logo.JPG">
<IMG SRC="big/dom/xarea51comm/comingsoon.JPG" ALIGN=MIDDLE>
|
|
The syntax you are using, big/dom/xurl/dir/dir is correct for cgi scripts, ftp, etc., but not for your html and its formatting.
To properly call your image, you can use either of the following syntaxes:
1)
Full Path
Code Sample:
For example, if your images are in your root directory(www), then your call would look like:
<img src="http://www.area51comm.com/image.jpg">
If your image is in a directory other than your root directory, say /Images (www/Images), then it looks something like:
<img src="http://www.area51comm.com/Images/image.jpg">
2) Or you can use relative paths to call your images. In this case, you refer to the image in a manner relative to your root directory (www), without having to use all the http:// stuff ahead of it.
Again, if your image.jpg is in your main root directory (www), then a relative image call looks like:
<img src="image.jpg">
If your image.jpg is in another directory, lets say /Images, then a relative call looks like:
<img src="Images/image.jpg">
I hope that helps, and best of luck to you.