Which of the following is a legitimate list with bullets?
list: <LI>onesey <LI>twosey
<UL>list: <LI>onesey <LI>twosey </UL>
list: <UL> <LI>onesey <LI>twosey
<OL>list: <LI>onesey <LI>twosey </OL>
Which of the following is NOT true about the '<LI>' tag?
Everything between the '<LI>' tag and the '</LI>' tag is one list item
The '<LI>' tag should only occur inside a list
The '<LI>' tag marks the beginning of a list item
Everything after the '<LI>' tag and before the next '<LI>' tag is one list item
TRUE or FALSE: All text between the opening '<UL>' tag and the first '<LI>' tag constitutes a list "heading":
True
False
TRUE or FALSE: A '<BR>' tag should be placed at the end of any list heading text.
TRUE
FALSE
Which of the following CORRECTLY illustrates nested lists?
<UL>list: <LI>onesey <LI>twosey </UL><UL> <LI>onesome <LI>twosome </UL>
<UL>list: <LI>onesey ;<UL> <LI>onesome <LI>twosome </UL> <LI>twosey </UL>
<UL>list: <LI>onesey ;<UL> <LI>onesome <LI>twosome <LI>twosey </UL>
<UL>list: <LI>onesey ;<UL> <LI>onesome <LI>twosome <LI>twosey </UL>
TRUE or FALSE: A nested list is completely enclosed in a list item of the parent list
True
False
TRUE or FALSE: When nesting lists, you must indent the nested list in your HTML code.
True
False
TRUE or FALSE: When nesting lists, there should be an equal number of opening "list" tags and closing "list" tags:
True
False
Which of the following is NOT a valid value for the 'TYPE=' attribute of the '<UL>' tag?:
"CIRCLE"
"DISC"
"DOT"
"SQUARE"
Which of the following CORRECTLY implements a bulleted list with solid bullets?
<UL>list: <LI>onesey <LI>twosey
<UL TYPE="DOT">list: <LI>onesey <LI>twosey </UL>
<UL TYPE="DISC">list: <LI>onesey <LI>twosey </UL>
<UL TYPE=DISC>list: <LI>onesey <LI>twosey </UL>
Which of the following CORRECTLY implements a numbered list?
<OL TYPE="A"> <LI>onesey <LI>twosey </OL>
<OL> <L1>onesey <L2>twosey </OL>
<OL> <1>onesey <2>twosey </OL>
<OL> <LI>onesey <LI>twosey </OL>
Which of the following is NOT a valid value for the 'TYPE=' attribute of the '<OL>' tag?:
"A"
"i"
"1"
"DOT"
TRUE or FALSE: The 'TYPE=' attribute of the '<OL>' tag is NOT upper-case/lower-case sensitive.
True
False
Which of the following HTML code fragments implements a numbered list beginning with numeral "100"?
<OL START="100"> <LI>loopdey <LI>oopdey </OL>
<OL BEGIN="100"> <LI>loopdey <LI>oopdey </OL>
<OL> <LI BEGIN="100">loopdey <LI>oopdey </OL>
<OL LAST="99"> <LI>loopdey <LI>oopdey </OL>
TRUE or FALSE: For each element of a definition list, there is a term and a definition.
True
False
Which of the following HTML code fragments implements a definition list?
<DL> <DT>boombox <DD>loud hi-fi </DT> <DT>tweetybox <DD>cheap radio </DT> </DL>
<DT>boombox <DD>loud hi-fi <DT>tweetybox <DD>cheap radio
<DL> <DT>boombox <DD>loud hi-fi <DT>tweetybox <DD>cheap radio </DL>
<UL> <DT>boombox <DD>loud hi-fi <DT>tweetybox <DD>cheap radio </UL>