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

add list items "Shapes" and"Colors" to the unordered list

3 Answers

Oops! It looks like Task 1 is no longer passing

What adjustments have you made to your code now?

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

this is what your looking for.

Oops! It looks like Task 1 is no longer passing.eisssssshhhh

Memory please could you give us all of the code that you are trying to pass the challenge with?

<body> <ol> <ul> <li>Stop</li> <li>Drop</li> <li>Roll</li> </ul> </ol>

.....Bummer! Your unordered list has too many list items. Try removing some.

I then write

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

Then lam back to task 1

Hi Memory,

You shouldn't have a <ul> tag (unordered list) within an <ol> tag (ordered list). Try doing some re-arranging and see if it works.