It works when I launch the page on the ide built in browser, but not when I open it directly from my files. Am I doing something wrong with how I have the paths setup? Im new to working with css and javascript, if its something simple I apologize.
Asked
Active
Viewed 29 times
1 Answers
1
Please remove the leading slash within the src attribute of your img tag to load images from a folder that is on the same level of the folder hierarchy as your HTML file. It has to look like this:
<img src="images/thinking.jpg" ...></img>

Dorian Hawkmoon
- 83
- 7
-
Thank you i feel like i wasted your time with such a dumb type on my part. – Thomas Delgado Jan 19 '23 at 08:40