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

James King
James King
3,670 Points

What am I missing? This is perfect.

I've copied this exactly as it is written on the lesson. I'm confused. Help.

Michael Afanasiev
Michael Afanasiev
Courses Plus Student 15,596 Points

Hey James,

Could you paste your code here so we can see what code you write? :) Use the Markdown Cheatsheet to see how.

3 Answers

I can understand this is frustrating but the images they give you are not in the 'images' folder so this is the crrrect answer:

 <section>
      <ul>
        <li>
          <img src="numbers-01.jpg" alt="">
        </li>
        <li>
          <img src="numbers-02.jpg" alt="">
        </li>
        <li>
          <img src="numbers-06.jpg" alt="">
        </li>
      </ul>
    </section>
Michael Afanasiev
PLUS
Michael Afanasiev
Courses Plus Student 15,596 Points

Hey James,

I'm not sure why, it seems the quiz's source of images is not the img folder.

This will solve it:

<li><img src=numbers-01.jpg alt=""></li>
        <li><img src=numbers-02.jpg alt=""></li>
        <li><img src=numbers-06.jpg alt=""></li>
James King
James King
3,670 Points

Quiz about displaying images on the webpage. I keep getting a "bummer" message. But I copied and pasted the code from my Workspace...and it works fine on there.

<section> <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> </section>