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

Web design, stage 3, creating HTML content, challenge task #2 of 2 - Can't get past code challenge

in frustration I copies Nicks notes in the index.html and still unable to satisfy the 2nd challenge for it's need of an image tag. What is it that must be missing but I'm not seeing?

1 Answer

adam รฅslund
PLUS
adam รฅslund
Courses Plus Student 12,184 Points

Hi Lisa.

It always helps if you post the code you have written. So that other users can see where the problem is.

The first challenge you made this.

<section>
    <ul>
        <li></li>
        <li></li>
        <li></li>
    </ul>
</section>

The next step is to add 3 img tags inside the list items. Like this

 <section>
    <ul>
        <li><img src="" alt=""></li>
        <li><img src="" alt=""></li>
        <li><img src="" alt=""></li>
    </ul>
 </section>

The last step is to add the link to the images that are placed in the img folder.

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

I hope that this helps.