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 trialYolanda Facio
6,944 PointsUnable to get Images to show, when doing challenge for Stage 3 I keep getting error message.
My Code:
<section> <ul> <li> <a href="img/numbers-01.jpg"> <img scr="img/numbers-01.jpg" alt=""> <p>Title of picture</p> </a> </li>
This is just as shown on video
1 Answer
Arseniy Noongoolan
Courses Plus Student 1,569 PointsHi Yolanda Facio, You've made a simple typo mistake: the attribute of img tag is src, not scr. <code> <ul> <li> <a href="img/numbers-01.jpg"> <img src="img/numbers-01.jpg" alt=""> <p>Title of picture</p> </a> </li> </ul> </code>
Yolanda Facio
6,944 PointsYolanda Facio
6,944 PointsTHANK YOU!!!!! I did not see that typo. Too many hours in front of the computer I guess. Dumb mistake. Thanks for the catch!