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 did what it asked, why doesn't it know that?

Add a nested ordered list to the Shapes item.

yeah, like this:

<ul> <li>Shapes</li> <ol> <li>Triangle</li> <li>Circle</li> <li>Square</li> </ol> <li>Colors</li> </ul>

Or am I missing something?

1 Answer

Neil Northrop
Neil Northrop
5,095 Points

Hey Sarah,

When you are trying to paste your code in these forums, wrap your code with some markdown so it'll show up as code.

Start with 3 backtick ` marks, then html, insert your code and end with 3 more backtick ` marks. Take out the quote marks when you're typing it out.

It may look something like this:

```html
<ol>
</ol>

Or click on the link right under the text box named Markdown Cheatsheet. Hopefully that'll help.