Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRena Ferioli
203 PointsImages do not appear in my web page.
I downloaded the images and they are in the image folder, but when I go to the preview of the web site the image does not appear.
6 Answers
Robin MILTENBERGER
3,792 PointsHey Rena,
Could you copy/paste your code ?
You should do something like that :
html
<img src="folder/filename_of_image">
It could be any extension :png or jpeg or gif
Rena Ferioli
203 PointsHere is the code:
< img src="img/numbers-02.jpg">
Robin MILTENBERGER
3,792 PointsI can see that our balise is not valid, there is a space between < and img.
It should be <img
Rena Ferioli
203 PointsThanks tried that. Still the images appear just as a small box with a ?.
Robin MILTENBERGER
3,792 PointsWhat do you mean by small box with a ?
Eric Washington
iOS Development with Swift Techdegree Student 21,884 PointsTry <img href="img/numbers-02.jpg"> Also, try to save your jpg file as a png file.