Description Lists
A description list is created with the <dl> tag. Inside it, terms are marked up with <dt> (description term) and their definitions with <dd> (description details). One term can have multiple definitions, and multiple terms can share one definition.
Use Cases
Description lists are ideal for glossaries, metadata displays (like a product specification sheet), FAQ sections, or any key–value data. Unlike using a table for such data, a description list is semantically appropriate and naturally accessible. You can style the term bold and indent the definition with CSS.