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

I included the images and copied but I am still getting an error the work is not correct?

<a href="img/numbers-02.jpg">] <img src="img/numbers-02.jpg" alt=""> <p>Experimentation with color and texture.</p> </a>

Video - adding images 6:49 minutes Add Image gallery contents

Can you show us your code?

3 Answers

Try this.

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

here is the code entered for the question... Thanks

     <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>
Saira Bottemuller
PLUS
Saira Bottemuller
Courses Plus Student 1,749 Points

Ms Janice, Joseph is right. Your code looks good except that each of the img src need < > around them. Joseph's code shows exactly where they should be placed. Right now, the system thinks you've entered some strings I think, since it doesn't have the greater than/less than symbols to tell it you're opening (and then closing) an instruction for the browser to read.