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 not seem to make the images test go through. This is /organize-with-unordered-lists. This is <nav> <ul> <li> part.

It says to add images with numbers.jpg. but there, it is not letting me through even though I am sure I got it.

Kristopher Van Sant
Kristopher Van Sant
Courses Plus Student 18,830 Points

Hey there! Can you post your code please? This way we can help you identify where the problem is in your code. Thanks!

I go through task one. This is what they wanted.

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

This is what they wanted and said it was fine. Then I did this.

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

What is the problem? Isn't this an unordered list?

Kristopher Van Sant
Kristopher Van Sant
Courses Plus Student 18,830 Points

Colin, I added markdown around your code so that it would show up. :) Checkout the markdown cheatsheet when you have time.

4 Answers

Angela Visnesky
Angela Visnesky
20,927 Points

Hi Colin, I looked at the challenge referenced and you need to add the unordered list with list items into the section, not the nav. I am not sure if this is your issue or not. Could you add your code so we can see where you are having trouble? Thanks!

Colin, I think you are not adding the image tag <img> to the line item <li>, based on how I got through the challenge: <li><img src="numbers-01.jpg"></li> for the first one, and the same form but with different .jpgs for the other line items.

Kristopher Van Sant
PLUS
Kristopher Van Sant
Courses Plus Student 18,830 Points

The second task in the challenge is asking you to add ONLY "numbers-01.jpg", "numbers-02.jpg", and "numbers-06.jpg" inside the three list items you created. You've added extra list items, try removing the lists items with numbers 3, 4, and 5.

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

lol. Wow. I am really silly. Thank you Kristopher.

Kristopher Van Sant
Kristopher Van Sant
Courses Plus Student 18,830 Points

No problem! And not silly at all! I can definitely understand why you thought to add the numbers in between. Challenges can be tricky at times so make sure you read their instructions carefully. Keep up the awesome work and welcome to Treehouse! :)