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

I checked my code and it matches the demo, but the pictures don't show on my sample website

just place holding thumbnails. Here's a sample of my practice work:

<a href="image/numbers-01.jpg">
            <img src="image/numbers-01.jpg" alt="">
            <p>Experimentation with color and texture.</p>
           </a>

Hi Jen,

I fixed your code formatting for you.

This thread will show you how to post code: https://teamtreehouse.com/forum/posting-code-to-the-forum

Thanks Jason :)

3 Answers

Do you have your images in an "image" sub-folder?

The course uses an "img" sub-folder for the images.

You can use whatever folder name you want but your path has to match it.

geoffrey
geoffrey
28,736 Points

It's because the exercise states images are within the img folder and on your side, you wrote image So, the path isn't right and the images can't be found.

   <ul>
        <li><img src="img/numbers-01.jpg" alt=""></li>
        <li><img src="img/numbers-02.jpg" alt=""></li>
        <li><img src="img/numbers-06.jpg" alt=""></li>
  </ul>

Thanks all - I had corrected that, but neglected to save before closing and reopening the program. Duh!