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 for Add Image Gallery Content in Stage 3 of "How to Make a Website"

Having trouble with the second part of the code challenge. I feel like I'm coding it correctly but it keeps coming up with something like "bummer. make sure you add the tag for the image 'numbers-01.jpg' "etc etc. I am doing this but this keeps popping up. I have tried to send the image with the code I am doing copied and pasted and it will not let me do that...

4 Answers

Try removing the links, it doesn't ask you to add them. Only the image tags.

E.g. <li> <img src="img/numbers-01.jpg" alt=""> </li>

that did the trick. Thank you Andrew! Hopefully I get the hang of this at some point

Can you add your code here?

thanks for the tip with markdown. I am VERY new at this. The code that I'm putting in for the section is below and it is coming back with "Bummer! Make sure you include an image tag that displays "img/numbers-01.jpg".

Still not letting me. when I post it it is blank.

Have you tried wrapping it in markdown?

Code: Wrap your code with 3 backticks (```) on the line before and after. If you specify the language after the first set of backticks, that'll help us with syntax highlighting.

        ```html
        <p>This is code!</p>
        ```
    <p><section>
      <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-03.jpg">
            <img src="img/numbers-03.jpg" alt="">
          </a>
        </li>
      </ul>
    </section>
    </p>