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

Challenge question on Web Design

I trying to add images to a list while leaving the alt attributes blank and without any captions or links and Iā€™m stuck. This is my work. <li><img src="numbers-01.jpg" alt="" <li><img src="numbers-02.jpg" alt="" <li><img src="numbers-06.jpg" alt=""

Where did I go wrong?

Here's a guide to posting code on the forums: https://teamtreehouse.com/forum/posting-code-to-the-forum

Which step in the challenge was this, and what does the error message say? Based on the information provided so far, I'd have to suggest making sure you're closing your lines of code, <li><img src="numbers-06.jpg" alt=""></li>

Thanks for the link to forum posting. I was on step 2 and upon checking my work it said that step 1 was now incomplete.

2 Answers

I got it now. Thank you for the help.

Logan R
Logan R
22,989 Points

Thanks for the link to forum posting. I was on step 2 and upon checking my work it said that step 1 was now incomplete.

Make sure you have you're ULs

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