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 How to Make a Website Creating HTML Content Use the Navigation Element

Linus Lim
Linus Lim
1,655 Points

Difference between ordered and unordered list?

This is going to be a simple yes no question to confirm if what I understand is correct.

  • Unordered list are basically any point form list like in a word processor using dots to list items;
  • while ordered list are list that categorized the list according to a, b, c or 1, 2, 3.

Am I correct?

Fred Sites
Fred Sites
11,151 Points

Yea.. The linked page has more info but you want to use an ordered list if it requires the list item to be done in a specified order. An unordered list can be used for bulleted type list (i.e. grocery list).http://webdesign.about.com/od/beginningtutorials/a/aabg121398.htm

3 Answers

You have got the right idea, keep it up!

James Barnett
James Barnett
39,199 Points

An important point to keep in mind ....

You should not sure a ordered list for something like a grocery list and you shouldn't use an unordered list for something like a recipe.

The choice of HTML tag is meant to convey the intent of the text.

Linus Lim
Linus Lim
1,655 Points

Alrite thank you!