Why arent my images showing? HELP!

  • Thread starter Thread starter James Duncan
  • Start date Start date
J

James Duncan

I've written a really simple html webpage (Im new to all this) which
includes this line:

<IMG SRC=webimage.jpg HEIGHT=128 WIDTH=128>

The trouble is the image doesnt show when the webpage loads? It uploaded ok
and I can see its there in smartftp but nothing when I go to the webpage,
just an empty box?

Heres the full html,

<html>
<head>
<TITLE>A Simple HTML Example</TITLE>
</head>
<body>
<BODY BGCOLOR="#000000" TEXT="#CCFFFF" LINK="#9690CC">
<H1>Jims first Webpage!</H1>
<P>Welcome to the world of HTML.
This is the first paragraph. While short it is
still a paragraph!</P>
<P>And this is the second paragraph.</P>
<IMG SRC=webimage.jpg HEIGHT=128 WIDTH=128>
</body>
</html>

Please help!

Jim.
 
James said:
I've written a really simple html webpage (Im new to all this) which
includes this line:

<IMG SRC=webimage.jpg HEIGHT=128 WIDTH=128>

The trouble is the image doesnt show when the webpage loads? It uploaded ok
and I can see its there in smartftp but nothing when I go to the webpage,
just an empty box?

Heres the full html,

<html>
<head>
<TITLE>A Simple HTML Example</TITLE>
</head>
<body>
<BODY BGCOLOR="#000000" TEXT="#CCFFFF" LINK="#9690CC">
<H1>Jims first Webpage!</H1>
<P>Welcome to the world of HTML.
This is the first paragraph. While short it is
still a paragraph!</P>
<P>And this is the second paragraph.</P>
<IMG SRC=webimage.jpg HEIGHT=128 WIDTH=128>
</body>
</html>

Please help!

Jim.
Hi Jim : Eg ... the picture name should be in quotes ....
<img SRC="jeri1.jpg" height=250 width=226> .. Total
 
Hi Jim : Eg ... the picture name should be in quotes ....
<img SRC="jeri1.jpg" height=250 width=226> .. Total

Jim, I don't know about the picture name being in quotes - I can't write
html and use Mozilla Composer to make my simple webpages - but it may
be that your webpage is looking for the image on your local hard drive,
not on the webserver's hard drive.

Malke
 
Back
Top