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

Amy Auman
Amy Auman
1,013 Points

What am I missing? I am including tag "img/numbers-01.jpg"

I keep trying to take the stage 3 challenge, but when I add the image files it keeps telling me to "make sure you include image tag "img/numbers-01.jpg"" I have included this tag, and I'm checking the code against my workspace and I can't figure out what I'm missing, since my workspace matches the video

If you are wondering how to post your code look at the Markdown Cheatsheet below the comment box

3 Answers

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

It's really hard to say what's going wrong without seeing your entire block of code but this is the solution. You may be missing the src attribute. You could have possibly forgot to change the numbers after copying and pasting. It could be tags that were left open. Without seeing everything it's difficult to diagnose.

Amy Auman
Amy Auman
1,013 Points

Hi Jeremy, Thanks for the reply. Looks like my problem was that I included the href attribute. Will definitely show my code next time!

Oh ok, and like I said check the Markdown Cheatsheet for how to post code in the forum. I noticed that you had posted something and then took it away. Presumably because the code you were referring to wasn't actually there. So I thought I'd mention that. Anyway, I'm glad you got it figured out.

Amy Auman
Amy Auman
1,013 Points

Yeah, it took me a sec to figure out how to show the code — I'm very new to this. Thanks for the tip!

Dan Gerdes
Dan Gerdes
13,059 Points

The code itself looks good, semantically speaking. I would double check to make sure your source file names are accurate, i.e. "numbers" as opposed to "number", etc. And Jeremy's point is a good one about making sure you've changed the file numbers if you copied and pasted your source file info.