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