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

Web Design Quiz question !

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!

I cant get through this question , any help please?

3 Answers

Rasmus Willemoes Paulsen
Rasmus Willemoes Paulsen
12,436 Points

It should look something like this:

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

thanks

Bill Hinostroza
Bill Hinostroza
19,273 Points

Rasmus code is correct but I decided to add the alt attributes just in case.

<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>
Rasmus Willemoes Paulsen
Rasmus Willemoes Paulsen
12,436 Points

Nice job Bill, but the alt attribute is not required in this code challenge :)

Rasmus Willemoes Paulsen
Rasmus Willemoes Paulsen
12,436 Points

Try and paste the code you made, and it will be easier to help you :)