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 trialJames King
3,670 PointsWhat am I missing? This is perfect.
I've copied this exactly as it is written on the lesson. I'm confused. Help.
3 Answers
Shaun Moore
6,301 PointsI can understand this is frustrating but the images they give you are not in the 'images' folder so this is the crrrect answer:
<section>
<ul>
<li>
<img src="numbers-01.jpg" alt="">
</li>
<li>
<img src="numbers-02.jpg" alt="">
</li>
<li>
<img src="numbers-06.jpg" alt="">
</li>
</ul>
</section>
Michael Afanasiev
Courses Plus Student 15,596 PointsHey James,
I'm not sure why, it seems the quiz's source of images is not the img folder.
This will solve it:
<li><img src=numbers-01.jpg alt=""></li>
<li><img src=numbers-02.jpg alt=""></li>
<li><img src=numbers-06.jpg alt=""></li>
James King
3,670 PointsQuiz about displaying images on the webpage. I keep getting a "bummer" message. But I copied and pasted the code from my Workspace...and it works fine on there.
<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>
Michael Afanasiev
Courses Plus Student 15,596 PointsMichael Afanasiev
Courses Plus Student 15,596 PointsHey James,
Could you paste your code here so we can see what code you write? :) Use the Markdown Cheatsheet to see how.