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 trial

HTML How to Make a Website Creating HTML Content Structure the Image Gallery

Help I cannot see the image the I uploaded when I preview the page!

I have the code correct and I unzipped and dragged the images just as the video instructed, but I still can't see the "numbers 01" image on the webpage when I preview the page.

1 Answer

Without seeing your code it's a bit tough to answer your question. One common problem that you might want to check is...make sure that if your image is in an 'images' folder on your directory that the link in your image tag is pointed to the images folder first, and not directly to your image.

Example:

<img src='images/numbers 01.jpg' alt='Picture of the number one'>

Thank you Ion! The problem was that I forgot to close the quotation marks the the image wouldn't show.