Adding images to my website has been more challenging than I expected.
For example, if I have a folder named "images" on my computer's desktop with an image called "eye,"
will the following code display the image correctly?
<img src="Desktop/images/eye.jpg">
I've tried variations like
<img src="Desktop/images/eye.jpg">
<img src="images/eye.jpg">
and even attempted moving the image to different folders, but for some reason, it just won't work.