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

help plzz

Add the items "About", "Cupcakes", and "Locations" to the unordered list... can someone show how its done i have been trying for 4 hrs and getting no wheres

2 Answers

Unordered List =  <ul> </ul> 

That code is basically saying put a list here, but there is no data in the list Next you have to make list items inside the 'unordered list' which is 'list item'

*Note list item = , is not part of the actual code

List item =     <li></li>

But now you have to put data into the list items or you will just see bullet points and that is where you put your text

<ul>
   <li>text here</li>
   <li>text here</li>
   <li>text here</li>

</ul>

So if you don't get it with that explination, basically fill in text here with about, cupcakes, and locations :) I hope you have a clearer understanding though.

i passed thanks!!

No problem, good to hear :)