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

Kayla Millar
217 PointsHelp me please!!
Okay I am trying to do the challenge where i need to write and img in and i keep getting this message
Bummer! Make sure you include an image tag that displays "img/numbers-01.jpg".
this is how I'm entering the tag.
<img scr="img/numbers-01.jpg" alt="">

Dustin Matlock
33,856 PointsHi Kayla, here's an image to help show how to do that.
4 Answers

Thomas Regan
2,032 Pointshi kayla, with these problems its normally a problem with the file path. is everything named correctly? everything spelt correctly?

Shawn Flanigan
Courses Plus Student 15,815 PointsKayla, if you're still having trouble, this is what the <section>
block should look like:
<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>

Ken Alger
Treehouse TeacherKayla;
Also make sure your .jpg files are located in a folder named "img" The folder needs to be at the same file tree level as index.html to utilize the suggested src="..." convention.

Thomas Regan
2,032 Pointsno need to worry about file uploading its a code challenge and everything is in place, the code is just needed.
Dan Mirda
3,992 PointsDan Mirda
3,992 PointsPaste your code so somebody can help you.