help with images

liunx

Guest
hey<br />
i'm a novice with the whole HTML thing and am trying to teach myself the basics in notepad.<br />
i'm currently having problems with active images. when i try to put them on a page all i see is a little white square with a red sqaure, green circle and red triangle inside it, where the image should be.<br />
the page the image is supposed to link to still appears when i click on the white square.<br />
could someone please tell me why this is happening and what i can do to fix it?<br />
the image type i am using is .gif<br />
thanks a million<br />
x<!--content-->that little square appears when an image is not available. Check the image path, make sure its where it is supposed to be...<!--content-->Check if the extensions are correct, so if you have saved the imag like image.gif, also use <img src=http://www.webdeveloper.com/forum/archive/index.php/"image.gif"><!--content-->i checked my code and i can't see what's wrong.:rolleyes: <br />
this is what i've written:<br />
<br />
<A HREF=http://www.webdeveloper.com/forum/archive/index.php/"about.html" TARGET="main"><IMG BORDER="0" SCR="aimg.gif"></A><br />
<br />
all my files (text, html and gif) are all in the same folder on my hard disk.<br />
<br />
i'm totally puzzeled but it's probably something really simple that i don't know about! :confused:<!--content-->in the future put it as /image.gif also you are using img scr... its img src. <img src=http://www.webdeveloper.com/forum/archive/index.php/"aimg.gif"> not scr... scr.... the file extention for a screen saver..........<!--content--><A HREF=http://www.webdeveloper.com/forum/archive/index.php/"about.html" TARGET="main"><IMG BORDER="0" SCR="aimg.gif"></A> <br />
<br />
<br />
...try this:<br />
<br />
<A HREF=http://www.webdeveloper.com/forum/archive/index.php/"about.html" TARGET="main"><IMG BORDER="0" SRC="aimg.gif"></A><!--content-->*SLAPS FOREHEAD* d'oh!!! :rolleyes: <br />
that's fixed it!<br />
sorry for being so dim!<br />
thanks a lot for your help<br />
xxx<!--content-->no problem :D<!--content-->
 
Back
Top