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

Eric villalobos
Eric villalobos
938 Points

i need the exact answer to this coding challenge #2 on 'how to make a website" 2 of 2

https://teamtreehouse.com/library/how-to-make-a-website/creating-html-content/organize-with-unordered-lists

question two of two

please provide img of code for obj 2 of 2 have been stuck for a few day and no one has gave me the correct code. i even msg support about a glitch and no luck????

2 Answers

When asking for help you really need to post the code with your solution so people can see what you are doing wrong (if anything. Use this link to post HTML markup to make it easy to read: https://teamtreehouse.com/community/cheatsheet

It sounds like you are having trouble making an image a list item. Here is an example of the proper syntax:

<ul>
<li><img src ="photo-example.jpg" alt=" "></li>
</ul>

That should give you enough information to complete the challenge.

Jonathan Rhodes
Jonathan Rhodes
8,086 Points

Your img tag should resemble this <img src="numbers-01.jpg"> and just replace "numbers-01.jpg" with the other paths for each <li> tag.