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

I need help on adding the "Shapes" and "Colors" to the "unordered lists"

I'm sure I'm doing something wrong, that is simple

Erik McClintock
Erik McClintock
45,783 Points

Pervis,

If you paste the code that you've attempted into your challenge, we will be better able to assist you. A lot of times with these challenges, it's a simple syntax error somewhere or something small. We can get you sorted if we can see your code to help you debug it! =)

Erik

2 Answers

Your code for that question should look like this,

 <ul>
      <li>Shapes</li>
      <li>Colors</li>
</ul>

Don't forget that ordered lists are <ol> and unordered lists are <ul> Hope this helps you

Thank you Stephanie

David Wood
David Wood
5,705 Points

I checked the challenge that you were on and the assignment was to create an 'ordered list'. The mark should look like above except for <ol> instead of <ul>.

Thank you, I appreciate taking the time to respond