+ 1
I'm not very clear about how to insert a picture to a web page with HTML
specially when the image is not in the same folder as the editing folder is situated.
2 Antworten
+ 3
If the image is in the same folder as your html file :
<img src="your_image.png">
If the image is not in the same folder as your html file, let's say you created a sub-folder named "images" :
<img src="/images/your_image.png">
If the image is from a website :
<img src="copy and paste the image url here">
+ 1
ooh