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

Auguston Cobba
Auguston Cobba
299 Points

Bummer! Make sure you include an image tag that displays "img/numbers-01.jpg".

I entered this code but can't get past the stage because I keep getting the "bummer" for my Challenge. What am I doing wrong? <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-06.jpg" alt=""> </a> </li> </ul>

Julian Gutierrez
Julian Gutierrez
19,201 Points

Posting your code would facilitate an answer.

Auguston Cobba
Auguston Cobba
299 Points

Julian, thanks for the interest. Here is what I wrote: <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-06.jpg" alt=""> </a> </li> </ul>

Julian Gutierrez
Julian Gutierrez
19,201 Points

I'm not seeing your code if you could paste it between three back ticks (```) that could help out.

3 Answers

Julian Gutierrez
Julian Gutierrez
19,201 Points

The challenge doesn't need you to link the images or in other words no anchor tags are needed.

Auguston Cobba
Auguston Cobba
299 Points
        <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-06.jpg" alt="">
          </a>
        </li>
      </ul>```
Auguston Cobba
Auguston Cobba
299 Points

Julian, see above code. There is a <ul> in my code that is not visible on the post above

Auguston Cobba
Auguston Cobba
299 Points

Thanks, the challenge accepted my code!