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 trialLee Ann VanWinckel
1,480 PointsUnsure what I am doing wrong
Thanks in advance for input. Lee Ann
Inside the three new list items, add the following images from inside the img folder: "numbers-01.jpg", "numbers-02.jpg", and "numbers-06.jpg". Leave the alt attributes blank, and donβt add any captions or links. Just the images!
<ul> <li> <a img/numbers-01.jpg </li> <li> <a img/numbers-02.jpg </li> <li> <a img/numbers-06.jpg </li>
</ul>
3 Answers
Sreng Hong
15,083 PointsHi Lee, <br />
All you need to you do is to add an image tag into the 3 blank unordered lists that you created from the 1/2 Code Challenge. <br />
So, to create the image tag you can simply use <img src="path of your image" alt="image alter">
<br />
For example, you can add the first image to the first unordered list like this
<ul>
<li><img src="img/numbers-01.jpg" alt=""></li>
</ul>
Sergio Slansky
22,392 Points<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>
Lee Ann VanWinckel
1,480 PointsThanks for your help. This turned out to be the answer: section> <ul> <li> </<li> <li> </li> <li> </li> </ul>
Sreng Hong
15,083 PointsSreng Hong
15,083 PointsYou can add another two by yourself, hope it can help!!! Sreng