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?
✗ Incorrect
The <dt> tag defines a term in a description list.
What does the <dd> tag represent in a description list?
✗ Incorrect
The <dd> tag contains the description or definition of the term.
Which element wraps the entire description list?
✗ Incorrect
The <dl> element wraps the whole description list.
Can you have multiple <dd> tags for one <dt>?
✗ Incorrect
Multiple <dd> tags can follow one <dt> to provide several descriptions.
Which of these is a good use case for a description list?
✗ Incorrect
Glossaries are a perfect example where description lists are useful.
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.