Lists — Quiz

Answer all 5 questions, then submit. You need 60% to pass. Log in to save progress.

Question 1
Which list type shows numbers and is for steps where order matters?
A <ul>
B <ol>
C <dl>
D <li>
Question 2
What element holds each item inside a <ul> or <ol>?
A <item>
B <p>
C <li>
D <dd>
Question 3
How do you create a sub-list under an item?
A Put a new <ul> inside the <li>
B Use <sublist>
C Indent the text with spaces
D Add a second <ul> after the list
Question 4
What is the semantically correct structure for a navigation menu?
A A series of <p> tags
B A <ul> of links, usually inside <nav>
C A table
D Several <h2> headings
Question 5
Which list type best suits a glossary of terms and their definitions?
A <ol>
B <ul>
C <dl> (description list)
D <table>