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

sean purdy
sean purdy
2,770 Points

need help!

I am stuck on the after video test as it tells me to add the "numbers-01.jpg" "numbers-01.jpg" and "numbers-06.jpg" which i have down below many times i have changed it and just used the code it said then added what is below but it keeps saying "bummer!... Im unsure what to do to correct this as i can't progress until i do this.

A great feature in the help section would be the ability to be able to add a screenshot that way id able to show exactly what the problem was.

<nav> <ul> <li><a href="index.html">Portfolio</a></li> <li><a href="about.html">About</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> </header> <section> <ul> <li><ing src="img/numbers-01.jpg" alt=""></ing></li> <li><ing src="img/numbers-01.jpg" alt=""></ing></li> <li><ing src="img/numbers-06.jpg" alt=""></ing></li> </ul> </section> <footer> <p>Ā© 2013 Nick Pettit.</p> </footer> </body> </html>

1 Answer

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,253 Points

Hi Sean,

When you're experiencing a problem with a code challenge you should be able to add a snapshot of the code you've tried when you send a post to the Community via "Get Help"

Also you can send your own screenshot by using code markdown. See the markdown cheat sheet below any post on the forums.

You have a typo in your image element

<img src="img/numbers-01.jpg" alt=""></img></li>

Fix your image elements and I believe you'll be good to go.