0
what if you don't have an image in the same folder as the HTML folder .how do i then insert an image?
2 Answers
+ 1
Just put the name and the format of the image.
myimage.jpg
If the image is in a folder called images (default used) it should be images/myimage.jpg
If you are setting it in the CSS file that is on a folder called styles, and the image is on a folder called image, use: ../images/myimage.jpg
Don't forget to put the file format at the end of the file name
0
If you have the image local at your computer you have to put the whole path to the image to src (src='C:\folder\...\image.png'). You also can use the URL to the image if it is on an web page.