I\'m kind of new to HTML. I\'m trying to display an image on my website but for some reason, it just shows a blue box with a question mark in it. I\'ve looked everywhere on
If you put <img src="iwojimaflag.jpg"/> in html code then place iwojimaflag.jpg and html file in same folder.
<img src="iwojimaflag.jpg"/>
If you put <img src="images/iwojimaflag.jpg"/> then you must create "images" folder and put image iwojimaflag.jpg in that folder.
<img src="images/iwojimaflag.jpg"/>