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 trialJanice Baldon-Gutter
688 PointsI 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
3 Answers
Joseph Damiani
1,066 PointsTry 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>
Janice Baldon-Gutter
688 Pointshere 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
Courses Plus Student 1,749 PointsMs 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.
Joseph Damiani
1,066 PointsJoseph Damiani
1,066 PointsCan you show us your code?