+ 1
<img> display problem
<html> Hii everybody , i want to insert an image.jpg in html code , but the image doesnt display , !! The image is saved in desktop , however , i specified the src = " 17331.jpg and alt=""
3 Réponses
+ 1
There are attribute complete, when the image load finished.It's Use with Javascript.
+ 1
thx a lot guys :)
0
Linking external media resources, if you don't specify a long-path but instead a short-path, will not work.
If you just wrote:
<img src="picture.jpg"></img>
, then it would find the picture within the same folder. Not on your desktop.
If you really want to go to the desktop to find it...
<img src="PATH TO DESKTOP"></img>
, would do the trick. Obviously replace the block capitals 'PATH TO DESKTOP' with the actual path.
Glad to help.