Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.
darren green
153 Pointshtml lesson 3 inserting li and numbers
it keeps saying make sure you add your numbers/ i did its still wrong
2 Answers

Marek Ondrák
15,177 Pointsyou should make unordered list with 3 list items and each should look like <img src="img/numbers-01.jpg" alt=""> but different files (numbers-02.jpg and numbers-06.jpg). I think you forgot img folder.

Errol Russell
6,197 Points<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>