CS 102 HTML Lists
list-style-type
Change the style of bullets by using the _____ attribute
nested
HTML lists can be ____
<ul> <li>Item <ol> <li>Item</li> </ol> </li> </ul>
Nest an ordered list inside an unordered list. Both lists have one item called "Item." DO NOT FORGET END TAGS!
style
The nested list changes ____
unordered and ordered
There are two types of html lists. they are ____ and ____.
display:inline
after you make an identifier, you need to use it to edit list items. use the style attribute ____ to make the list items horizontal. (note: this style is internal styling)
numbers
an ordered list defaults to ____
<ul style="list-style-type:none"> </ul>
change the unordered list to have no bullets. DO NOT FORGET END TAGS!
<ol> <li>Item</li> </ol>
makes an ordered list with the item "Item" in it. DO NOT FORGET END TAGS!
numbered
ordered lists are ____
numbers, uppercase letters, lowercase letters, upper roman numerals, or lower roman numerals
ordered lists can be numbered with ____, ____, ____, ____, or ____
description list
the <dl> tag stands for a ____ ____
same
the ____ tag that adds an item for the unordered list also is the same for the ordered list (<li>)
disk, circle, square, and none
the different list style types are: ____, ____, ____, and ____
</li>
the tag that ends an item in the list is ____
</ol>
the tag that ends an ordered list is ____
</ul>
the tag that ends an unordered list is ____
<li>
the tag that puts an item in the list is ____
<ol>
the tag that starts an ordered list is ____
<ul>
the tag that starts an unordered list is ____
type
to change the type of numbering used, use the ____ attribute
<dl>
to make a list have descriptions, use the ____ tag
<ul id="ID"> </ul>
to make a list horizontal, you need to use an identifier. Show how to make an identifier for an unordered list. DO NOT FORGET END TAGS!
bulleted
unordered lists are ____
circular bullets
unordered lists default with ____ ____, but you can change them using style attribute inline.
<dd>
what is the tag that is used when describing a term?
<dt>
what is the tag that is used when naming a term (defines term)?
Horizontal
List can also be ____
<dl> <dt>Term</dt> <dd>a place holder</dd> </dl>
Make a description list that defines the term "Term" as "a place holder." DO NOT FORGET END TAGS!
<ul> <li>Item</li> </ul>
Make a list that has the one item "Item." DO NOT FORGET END TAGS!
<head> <style> ul#ID li{display:inline;} </style> <head> <body> <ul id="ID"> <li>Item</li> </ul> </body>
Make a unordered, horizontal list with the item "Item." Name the unordered list identifier "ID" DO NOT FORGET END TAGS!
<ol type="i"> </ol>
Makes an ordered list have lower roman numerals. DO NOT FORGET END TAGS!
<ol type="a"> </ol>
Makes an ordered list have lowercase letters. DO NOT FORGET END TAGS!
<ol type="1"> </ol>
Makes an ordered list have numbers. DO NOT FORGET END TAGS!
<ol type="I"> </ol>
Makes an ordered list have upper roman numerals. DO NOT FORGET END TAGS!
<ol type="A"> </ol>
Makes an ordered list have uppercase letters. DO NOT FORGET END TAGS!