Skip to content

<dt> - Description Term

List term HTML 2.0

The <dt> element represents a term or name in a description list (<dl>). It’s paired with one or more <dd> elements that provide the description or definition for the term.

Result
<dl>
<dt>Term</dt>
<dd>Description</dd>
</dl>

The <dt> element must be a child of a <dl> element and is typically followed by one or more <dd> elements.

The <dt> element supports all global attributes like id, class, style, and lang.

<dt id="term-1" class="important-term">Term Name</dt>
Result
Result
Result

One term can have multiple descriptions:

Result

Multiple terms can share one description:

Result
Result
Result
Result
Result
Result
Result
Result

Screen readers announce terms in description lists:

<!-- Screen reader: "Description list. Term: Username. Description: john_doe" -->
<dl>
<dt>Username</dt>
<dd>john_doe</dd>
</dl>

Use descriptive, unambiguous terms:

<dl>
<dt>Email Address</dt>
<dt>Phone Number</dt>
<dd>(555) 123-4567</dd>
</dl>

Keep terms and descriptions properly paired:

<dl>
<dt>Term 1</dt>
<dd>Description 1</dd>
<dt>Term 2</dt>
<dd>Description 2</dd>
</dl>
<dl>
<dt>Definition</dt>
<dd>The meaning of a word or phrase</dd>
</dl>
<dt>API Key</dt>
<dd>Your unique authentication key for API access</dd>
<dt>Status</dt>
<dd>Active</dd>
Result
Result
BrowserVersionNotes
Chrome1+Full support
Firefox1+Full support
Safari1+Full support
Edge12+Full support
IE3+Full support

The <dt> element has been supported since early HTML versions.