Skip to content Skip to sidebar Skip to footer

Why Is My Picture In Html Not Popping Up On My Browser

I'm trying to put this image I have saved in this location: C:\Users\Administrator\Desktop\HTML docs\Lab 02\images to put on my html code here: Copy

Better way is to use relative paths. Assuming your html-file is in

C:/Users/Administrator/Desktop/HTML docs/Lab02/

You should use

images/logo.gif

as your path.

Solution 2:

us file path like

file:///C:/Users/Administrator/Desktop/HTML docs/Lab 02/images/logo.gif

In these cases open file with any browser and the copy the path used by browser is a shortcut to test the path

Solution 3:

You have been using the local computer path. Which is wrong. You need to use the web path.

See This : C:/Users/Administrator/Desktop/HTML docs/Lab 02/images/logo.gif

This is pointing to your C: drive which is only accessible from your computer not others. you need to put up the image path as something like

./images/logo.gif

Post a Comment for "Why Is My Picture In Html Not Popping Up On My Browser"