Home > Software engineering >  Having trouble adding local image using HTML
Having trouble adding local image using HTML

Time:07-12

I have an image on my computer that I'm trying to add to my HTML by using img src="myheadshot.jpeg" (arrows included in VS Code), but nothing shows up. I've been able to add images from Google using the image address, but I can't seem to find a solution to the local image issue.

I'm just beginning my coding journey, so any help is much appreciated!

CodePudding user response:

Make sure your code and image are saved in the same file or location on your computer. (e.g. The code and image are both saved on the desktop or in a file on the desktop.)

Also, maybe try this:

src="myheadshot.jpg"

Not really a difference, but it works for me!

CodePudding user response:

enter image description here First of all, I wish you success in this journey that you have just started.

For now, you can paste the image into your IDE and use the extension with the name there.enter code here

  • Related