0
0
HTMLmarkup~5 mins

Description lists in HTML - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What HTML elements make up a description list?
A description list uses <dl> as the container, <dt> for terms, and <dd> for descriptions.
Click to reveal answer
beginner
How do you group terms and their descriptions in HTML?
You place each term inside a <dt> tag followed by its description inside a <dd> tag, all inside a <dl> container.
Click to reveal answer
intermediate
Can a description list have multiple descriptions for one term?
Yes, you can have multiple <dd> elements after a single <dt> to provide several descriptions for one term.
Click to reveal answer
beginner
What is a real-life example of using a description list?
A glossary or a list of questions and answers can use description lists to pair terms or questions (<dt>) with their definitions or answers (<dd>).
Click to reveal answer
intermediate
Why use description lists instead of paragraphs or lists for terms and definitions?
Description lists provide semantic meaning to the browser and assistive technologies, making content clearer and more accessible than using plain paragraphs or unordered lists.
Click to reveal answer
Which tag is used to define a term in a description list?
A&lt;dt&gt;
B&lt;dd&gt;
C&lt;dl&gt;
D&lt;li&gt;
What does the <dd> tag represent in a description list?
AA term
BA description
CThe whole list
DA list item
Which element wraps the entire description list?
A&lt;dd&gt;
B&lt;dt&gt;
C&lt;dl&gt;
D&lt;list&gt;
Can you have multiple <dd> tags for one <dt>?
ANo, only one description per term
BOnly if using CSS
COnly if inside another list
DYes, multiple descriptions are allowed
Which of these is a good use case for a description list?
AGlossary of terms
BNavigation menu
CSimple bullet list
DPage footer
Explain how to create a description list in HTML and why it is useful.
Think about how terms and their explanations are paired in a list.
You got /5 concepts.
    Describe a real-life scenario where you would use a description list instead of other list types.
    Consider situations where you explain words or concepts.
    You got /4 concepts.