Q1. What is a description list in HTML?
A description list (<dl>) contains terms (<dt>) and descriptions (<dd>), like a glossary or dictionary.
Q2. What do <dt> and <dd> tags represent?
<dt> defines a term/name, and <dd> defines the description or definition of that term.
Q3. Can a term have multiple descriptions?
Yes, you can have multiple <dd> tags following one <dt> for multiple definitions.
Q4. How do browsers typically display description lists?
Browsers usually indent the <dd> description while the <dt> terms are left-aligned.
Q5. Can you have multiple terms for one description?
Yes, use multiple <dt> tags followed by one <dd> to define multiple terms sharing the same description.
