html image tag- the alternative name is displayed but can't get the jpeg image

  • Thread starter Thread starter Blue Raven
  • Start date Start date
B

Blue Raven

Guest
to show up? I'm trying to write a web site for my coursework - the first page includes images set within a table. I have the table as I wanted, but instead of the images I get a red x and alternative name. They are small images and I'm using img src tag. Any idea where I am making the mistake?
 
Check it... it is goes like this..
<table>
<tr>
<td><img scr="locaiton.jpg" width="according to the image to be placed" height="according to the image to be placed" alt=""></td>
</tr>
</table>

if it is perfect then check for the location if the image is there or not...
 
Check it... it is goes like this..
<table>
<tr>
<td><img scr="locaiton.jpg" width="according to the image to be placed" height="according to the image to be placed" alt=""></td>
</tr>
</table>

if it is perfect then check for the location if the image is there or not...
 
The location of the image is incorrect or the filename is incorrect.

If you are doing this on your local C drive - are the images in a separate folder called Images?

Also many Internet servers use case sensative file names so if you have a file called: Myfile.jpg and you have put src="myfile.jpg" then it will not be found on a Linux server because you would have to either change the file name to myfile.jpg or your code to "Myfile.jpg".
 
Back
Top