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 trial

HTML How to Make a Website Creating HTML Content Organize with Unordered Lists

Inside the three list items, add the following images from inside the img folder: "numbers-01.jpg", "numbers-02.jpg"....

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.

<section> <ul> <li><img src=”img/numbers-01.jpg”></li> <li><img src="img/numbers-02.jpg"></li> <li><img src="img/numbers-06.jpg"></li> </ul> </section>

index.html
<section>
        <ul>
          <li><img src=”img/numbers-01.jpg”></li>
          <li><img src="img/numbers-02.jpg"></li>
          <li><img src="img/numbers-06.jpg"></li>
        </ul>
      </section>

2 Answers

Kristopher Van Sant
PLUS
Kristopher Van Sant
Courses Plus Student 18,830 Points

Were you able to figure this out? I've been playing with your code for a while now to try and see what the issue was because it should have been correct. Finally I figured out that there was something wrong the the double quotes around your first list item....

 <li><img src=”img/numbers-01.jpg”></li>

I redid the quotes and it passed the challenge.

 <li><img src="img/numbers-01.jpg"></li>

I hope that helps you out!

Yep... I guess it doesn't like 'copy/paste' chuckles.... Thank you, Kristopher!