ptg16476052
88 LESSON 5: Organizing Information with Lists
Quiz
- Ordered and unordered lists use the
- tag for list items. What tags are used by
definition lists? - Is it possible to nest an ordered list within an unordered list or vice versa?
- Which attribute is used to set the starting number for an ordered list? What about to
change the value of an element within a list? - What are the three types of bullets that can be specified for unordered lists using
the list-style-type CSS property?
Quiz Answers
- Definition lists use the
- and
- tags for list items.
- Yes, you can nest ordered lists within unordered lists or vice versa. You can also
nest lists of the same type, too. - With the
- tag, the start attribute is used to specify the starting value for the
list. To change the numbering within a list, the value attribute is used. - The bullet types supported by the list-style-type property are disc, circle, and
square. The default is disc.
Exercises
- Use nested lists to create an outline of the topics covered in this book so far.
- Use nested lists and the list-style-type CSS property to create a traditional out-
line of the topics you plan to cover on your own website.