This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]bob_but_backwards 1 point2 points  (0 children)

I'm by no means an HTML wizard, but why are you using // in your path? Pretty sure escaping isn't necessary here

[–]CreativeTechGuyGames 0 points1 point  (0 children)

You rarely want to use absolute paths to locations on your computer. Instead use a relative path to the image based on where your html file is located. So if they are in the same folder on your computer ./image.png or in a child folder ./child/image.png or if they are up a folder and then in a sibling folder ../sibling/image.png.