I have been trying to figure this out for sometime now. When I execute my website my images will not upload. As I can see the file on the page
CodePudding user response:
It looks like your PNG files are stored in the same directory as the HTML, not inside the images/ directory (as you probably intended). Try moving the images inside that folder.
CodePudding user response:
It seems like you have index.html in the same folder as your images. You can either remove images/ from your src='...' or move all of your images into the images folder and add images/ to href='favicon.ico'.
hope that helped.
