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 trialAlvin Liang
12,246 PointsHTML 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
Emilio Queiroz
3,710 PointsWrite 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>
Alvin Liang
12,246 PointsI 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>
Emilio Queiroz
3,710 PointsCHALLENGE 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>
Alvin Liang
12,246 Pointstask 2 of 2...
Diane Houghton
5,773 PointsIt may be looking for the alt="" tag on img/numbers-06.jpg
Alvin Liang
12,246 PointsAlvin Liang
12,246 PointsOMG THANK YOU SO MUCH!!!!!!!!!!!!!!!