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

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

I'm Having trouble passing this challenge, here is the code I am trying to use....would be grateful if someone could help me.

    <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=06.jpg">
            <img src="img/numbers-06.jpg" alt="">
          </a>
        </li>
      </ul>
    </section>!</p>

6 Answers

Can you link to the challenge?

Hi Cameran,

If you look to the right you'll see a "button/link" that says Code Challenge.

Jeff

Hi Carman, here is a link to the challenge as requested:

http://teamtreehouse.com/library/organize-with-unordered-lists

On your very first image you added a anchor tag too the image path is incorrect. It should look like

 <a href="img/numbers-01.jpg">

Thanks James, I actually got through, but turns out I was using the attribute link: <a href="img/numbers=01.jpg"> instead of the actual image <img src="img/numbers-01.jpg" alt="">

Hi Anton,

If you look to the bottom right of the text box you will see something that says Markdown Cheetsheet. If you don't understand that maybe this will make sense: How to display code at Treehouse

Jeff

Thanks Jeff, I'm going to try a practice run here:

<!DOCTYPE html>
<html>
    <head>
    <meta charset="utf-8">
    <title> Anton Burrows | Designer</title>
  </head>

</html>

Yipee it worked! Thanks a lot Jeff, much appreciated