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 Organize with Unordered Lists

a bummer keeps coming up saying that "img/numbers-01.jpg" is not displayed but if i go to the preview the image is displ

whats wrong

Joshua Holland
Joshua Holland
2,865 Points

Hi dusty. Could you post your code for the image so we can review it?

<!DOCTYPE html> <html> <body> </body> <section> <ul> <li> <a href="img/numbers-01.jpg"> <img src="img/numbers-01.jpg" alt=""> </a> </li> <li> <a href="img/numbers-02.jpg"> <img src="img/numbers-02.jpg" alt=""> </a> </li> <li> <a href="img/numbers-06.jpg"> <img src="img/numbers-02.jpg" alt=""> </a> </li> </ul> </section> </html>

Joshua Holland
Joshua Holland
2,865 Points

The entire code please. This can be done by typing three tildes (the ` key to the left of #1 on your keyboard) before and after your code like so...

your code goes here

like how there is nothing there

1 Answer

Jeremy Dortch
Jeremy Dortch
3,799 Points

could you post your code?

<!DOCTYPE html> <html> <body> </body> <section> <ul> <li> <a href="img/numbers-01.jpg"> <img src="img/numbers-01.jpg" alt=""> </a> </li> <li> <a href="img/numbers-02.jpg"> <img src="img/numbers-02.jpg" alt=""> </a> </li> <li> <a href="img/numbers-06.jpg"> <img src="img/numbers-02.jpg" alt=""> </a> </li> </ul> </section> </html>

Joshua Holland
Joshua Holland
2,865 Points

Not sure what's going on when you try to post your code. Just go into your html , hit ctrl (or command on mac) + a to select everything in the html document and copy it. Then paste it here with 3 tildes before the code. Otherwise we don't really have a way to answer your question :(