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 trialSusan McNeil
627 Points<ul> The preview shows the pictures, but I get a message that I'm doing it wrong, please explain.
<section>
<ul>
<li>
<a href="numbers-01.jpg">
<img src="numbers-01.jpg" alt=""> </a>
</li>
<li>
<a href="numbers-02.jpg">
<img src="numbers-02.jpg" alt=""></a>
</li>
<li>
<a href="numbers-06.jpg">
<img src="numbers-06.jpg" alt=""></a>
</li>
</ul>
</section>
5 Answers
Steven Parker
231,198 PointsYour link is to a video that doesn't seem to relate to your question. But if you are actually working in the module "Creating HTML Content", and the challenge "Organize With Unordered Lists", it says:
"Leave the alt attributes blank, and donβt add any captions or links. Just the images!"
So if that's the challenge you are on, you need to remove your links (<a> tags).
P.S. (for Chris) Indentation only helps readability, it has no functional effect in HTML.
Chris Gutierrez
6,911 Pointsyou might want to indent so everything falls under the un-order list.
<ul>
<li>
<a href="numbers-01.jpg">
<img src="numbers-01.jpg" alt=""> </a>
</li>
<li>
<a href="numbers-02.jpg">
<img src="numbers-02.jpg" alt=""></a>
</li>
<li>
<a href="numbers-06.jpg">
<img src="numbers-06.jpg" alt=""></a>
</li>
</ul>
</section>
Susan McNeil
627 PointsThanks, but indenting isn't the reason why I'm getting an error message even though I have a right answer.
Chris Gutierrez
6,911 Pointsyou are missing the folder call out. see below.
<li>
<a href="img/numbers-01.jpg">
<img src="img/numbers-01.jpg" alt=""> </a>
</li>
<li>
<a href="numbers-02.jpg">
<img src="numbers-02.jpg" alt=""></a>
</li>
<li>
<a href="numbers-06.jpg">
<img src="numbers-06.jpg" alt=""></a>
</li>
Chris Gutierrez
6,911 Points<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>