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

HTML stage 3

Challenge 2-2 it says to add the images "numbers-01.jpg" and so on.... when I preview the work, the page shows... however it keeps saying to "make sure you include an image tag that displays "img/numbers-01.jpg". PLEASE HELP!!!! AHHHH!!!!!

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

5 Answers

Write my code task to task. Begins again ...

1ΒΊ - CHALLENGE TASK 1 OF 2

Write this code inside de section:

                    <section>

                               <ul>
                                    <li><img src=""></li>
                                    <li><img src=""></li>
                                    <li><img src=""></li>
                               </ul>

                    </section>

CHALLENGE TASK 2 OF 2

Write this code inside de section:

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

IN THIS TASK , NO NEED TO WRITE <a> ANCHOR </ a>

OMG THANK YOU SO MUCH!!!!!!!!!!!!!!!

I have the code right and the preview shows the right pictures and everything... just keeps saying bummer...

<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">
          </a>
        </li>
      </ul>

CHALLENGE TASK 1 OF 2

<section> <ul> <li><img src=""></li> <li><img src=""></li> <li><img src=""></li> </ul> </section>

CHALLENGE TASK 2 OF 2

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

task 2 of 2...

It may be looking for the alt="" tag on img/numbers-06.jpg