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

Help 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="">

Dan Mirda
Dan Mirda
3,992 Points

Paste your code so somebody can help you.

Hi Kayla, here's an image to help show how to do that.

Posting Code to Treehouse

4 Answers

hi kayla, with these problems its normally a problem with the file path. is everything named correctly? everything spelt correctly?

Shawn Flanigan
PLUS
Shawn Flanigan
Courses Plus Student 15,815 Points

Kayla, 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
STAFF
Ken Alger
Treehouse Teacher

Kayla;

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.

no need to worry about file uploading its a code challenge and everything is in place, the code is just needed.