More HTML help please
Hello folks,
I'm back again asking for more help. I've written some very simple HTML for the front page of a website i'm planning on starting. Now the problem i'm having is that while the code works with the .index and pictures on my desktop. When i upload them to my virgin webspace the HTML seems to be working correctly, background ect.. but the pictures will not display. Nothing showing just blank. Not even one of the little broken pic icons.
All files have been uploaded into the same directory. Am i missing something really obvious here ?
Code below...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>TEST frontpage TEST</title>
<body background="bg.png">
<CENTER><IMG SRC="frontpagelogo.jpg"></CENTER> <<< Missing pic
<p><font face="Gabriola" size="5">
<CENTER>
<TABLE WIDTH="70%">
<TR>
<TD>
block of text - block of text - block of text - block of text - block of text - block of text - block of text - block of text -
block of text - block of text - block of text - block of text - block of text - block of text - block of text - block of text -
block of text - block of text - block of text - block of text - block of text - block of text - block of text - block of text -
block of text - block of text - block of text - block of text - block of text - block of text - block of text - block of text -
block of text - block of text - block of text - block of text - block of text - block of text - block of text - block of text -
</TD>
</TR>
</TABLE>
</CENTER>
</font></p>
<center><A HREF="http://###"><IMG SRC="enterbutton.jpg" BORDER=0 HEIGHT=80 WIDTH=163 ALT="enter"></A> <<< shows at text instead of the picture
</body>
</html>
|