SyntaxStudy
Sign Up

<dl>

tag

Represents a description list. Used for glossaries, metadata, or key-value pairs.

Syntax

<dl>\n <dt>term</dt>\n <dd>description</dd>\n</dl>

Example

html
<dl>
    <dt>HTML</dt>
    <dd>HyperText Markup Language — the structure of web pages.</dd>
    <dt>CSS</dt>
    <dd>Cascading Style Sheets — the styling of web pages.</dd>
</dl>