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

Having a problem with <ul>

So im stuck on 4 of 4 adding unordered list. <ul> <li>About</li> <li>Cupcakes</li> <li>Locations</li> <ul>
that is what i've added and it says it's wrong. then on the answer checking code it states "Add three list elements to the ordered list.". But am i doing a unordered list? if anyone can give me a hand that would be much appreciated.

3 Answers

I believe that there's a glitch in that code challenge because someone else about an hour ago had the same message pop up. so just ignore it. what you need to do is put li tags inside the ul tags like this:

<ul>
    <li>About</li>
    <li>Cupcakes</li>
    <li>Locations</li>
</ul>

if i change <ul> at the end to </ul> the it sends me back to the previous question

Try and ordered list.

if i delete <ul> and put <ol> it wants me to go back to step 3

Could you get a link to the code challenge?

nvm it finally went through. thanks for all your help.