Multiple choice

Definition lists are used for defining terms with the _________ tags.

  1. <dl> and </dl>

  2. <dl> and </dl> and <dt> and </dt>

  3. <dl> and <dt>

  4. <dl>,<dt>, <dd> and </dl>

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Definition lists require three tags working together: dl (container), dt (definition term), and dd (definition description/data). The dl tag wraps the entire list, with dt-dd pairs inside for each term and its definition.