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

I can't get past a question that I keep getting wrong and it's very annoying. Can you all add a skip question?

I have attempted several times to get the answer right, but it's incorrect. But I can't continue the course, because there is no way of getting past the question. very time wasting. How do I move on to the next question,

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Nick Pettit</title>
  </head>
  <body>
    <header>
      <a href="index.html">
        <h1>Nick Pettit</h1>
        <h2>Designer</h2>
      </a>
      <nav>
        <ul>
          <li><a href="index.html">Portfolio</a></li>
          <li><a href="about.html">About</a></li>
          <li><a href="contact.html">Contact</a></li>
        </ul>
      </nav>
    </header>
    <section>
      <ul>
        <li>
          <img src="imgs/numbers-01.jpg" alt="">
        </li>
        <li>
          <img src="imgs/numbers-02.jpg" alt="">
        </li>
        <li>
          <img src="imgs/numbers-06.jpg" alt="">
        </li>
      </ul>

    </section>
    <footer>
      <p>&copy; 2013 Nick Pettit.</p>
    </footer>
  </body>
</html>

2 Answers

Michael Afanasiev
PLUS
Michael Afanasiev
Courses Plus Student 15,596 Points

Hi Angilina,

Since you did not say if you are stuck on task number 1 or 2 I will give you the full answers to complete this challenge:

Step 1 - create an unordered list with three blank list items (Do not add any images):

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

    </ul> 
</section>

Step 2 - Inside those 3 list items you now must add the images. (at the code challenge the path to images is not from the img folder) so you must do the following:

<section>
    <ul>
            <li><img src="numbers-01.jpg" alt=""></li>
            <li><img src="numbers-02.jpg" alt=""></li>
            <li><img src="numbers-06.jpg" alt=""></li>

    </ul> 
</section>

You should now be able to complete the challenge, hope this helps!

Thank you so much Michael. I see from your code what I was doing wrong. I was putting <a in front of img. :)

Actually I was calling out the folder .. that's what I was doing wrong. The <a> goes in front of the link. But I just tried it and it worked. Thank you for your help. :)

Hi Angilina,

For future use, don't forget to mark an answer as "best answer" if someone helped you out. People get extra points for a best answer.

In this case, I already marked Michael's answer as best. :)

Ryan Hunt
Ryan Hunt
16,091 Points

You want to just have 3 blank list items like this:

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

    </section>

It's probably giving you an error because of the src links

Thanks, Ryan. I got that part. It was adding the images where I was having trouble. But Michael answered it. I appreciate your help.