HTML Description List Tag
Description lists organize terms and their definitions semantically. The <dl> tag creates a structured list perfect for glossaries, metadata, and key-value pairs.
DT and DD Elements
Inside a <dl>, use <dt> (description term) for the term and <dd> (description definition) for its description. Multiple <dd> elements can follow one <dt>.
Opening and Closing
Always close a description list with </dl>. Each <dt> and <dd> should also be properly closed for valid HTML.
Semantics & Best Practices
The <dl> tag provides semantic meaning for term-definition pairs. It helps screen readers understand relationships between terms and descriptions, making your content more accessible. Perfect for glossaries, metadata, and structured information.
