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

Task one-great job, Task two-task one no longer is passing go back to task one and great job again. What do I do?

This is for the organize with unordered list challenge.

Can you post your code?

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

1 Answer

It looks like you're referring to a folder called image in your img src filepath. The images are actually in a folder called img, so you need to change image to img.

Also, the <nav> tags are not necessary. They should only be used around a set of navigation links like a menu bar.

It should look like this:

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

That worked thanks a lot. I was stuck on that for awhile.