Skip to main content

html-tags.com

<dt>

The term (name) half of a description-list pair.

Baseline: Widely available · Grouping content

When to use it

Inside dl, before its dd(s); several dt can share one dd and vice versa.

When not to

Only valid inside dl (optionally via a div wrapper).

Example

HTML
HyperText Markup Language
The language of the web's structure.
<dl>
  <dt>HTML</dt>
  <dt>HyperText Markup Language</dt>
  <dd>The language of the web's structure.</dd>
</dl>
Rendered live above, source below.

Authoritative references