jfin95
jfin95

Reputation: 9

Images wont load

I am currently doing an assignment for school and my teacher has sent all the project photos which I have saved. The only problem is they will not show up no matter what I try doing.

ex. the image is named "photo1.jpg" and I did:

  <img src="photo1.jpg"> 

But the image will not load. if anyone has any suggestions I'd appreciate it.

Upvotes: 0

Views: 67

Answers (3)

Rinner
Rinner

Reputation: 5

<img src="photo1.jpg"></img>

Don't forget that this links current page folder. If you have in eg. in images directory, then use

<img src="images/photo1.jpg"></img>

Upvotes: 0

natsu1627
natsu1627

Reputation: 74

Check the location of the image. It should be in the same folder

<img src = "photo1.jpg" />

if it is not, and it has its own image folder inside your project you can do it like this

<img src = "imagesFolder/photo1.jpg" />

Upvotes: 0

iJakeUjake
iJakeUjake

Reputation: 118

If you mean on a webpage then the use this code to generate the image:

<img src="photo1.jpg"/> 

Keep in mind that the photo1.jpg needs to be in the same directory as the file (webpage) calling it.

Upvotes: 1

Related Questions