Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Eric villalobos
938 Pointsi need the exact answer to this coding challenge #2 on 'how to make a website" 2 of 2
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

Larry Coonrod
5,041 PointsWhen 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
8,086 PointsYour img tag should resemble this <img src="numbers-01.jpg"> and just replace "numbers-01.jpg" with the other paths for each <li> tag.