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
Unsubscribed User
982 PointsHTML
add list items "Shapes" and"Colors" to the unordered list
3 Answers
Unsubscribed User
982 PointsOops! It looks like Task 1 is no longer passing
Chris Higgins
6,813 Points<ul>
<li>Shapes</li>
<li>Colors</li>
</ul>
this is what your looking for.
Unsubscribed User
982 PointsOops! It looks like Task 1 is no longer passing.eisssssshhhh
Luke Glazebrook
13,564 PointsMemory please could you give us all of the code that you are trying to pass the challenge with?
Unsubscribed User
982 Points<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
Luke Glazebrook
13,564 PointsHi 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.
Luke Glazebrook
13,564 PointsLuke Glazebrook
13,564 PointsWhat adjustments have you made to your code now?