files/en-us/web/html/reference/elements/dt/index.md
The <dt> HTML element specifies a term in a description or definition list, and as such must be used inside a {{HTMLElement("dl")}} element. It is usually followed by a {{HTMLElement("dd")}} element; however, multiple <dt> elements in a row indicate several terms that are all defined by the immediate next {{HTMLElement("dd")}} element.
The subsequent {{HTMLElement("dd")}} (Description Details) element provides the definition or other related text associated with the term specified using <dt>.
{{InteractiveExample("HTML Demo: <dt>", "tabbed-standard")}}
<p>Please use the following paint colors for the new house:</p>
<dl>
<dt>Denim (semigloss finish)</dt>
<dd>Ceiling</dd>
<dt>Denim (eggshell finish)</dt>
<dt>Evening Sky (eggshell finish)</dt>
<dd>Layered on the walls</dd>
</dl>
p,
dl {
font:
1rem "Fira Sans",
sans-serif;
}
dl > dt {
font-weight: normal;
font-style: oblique;
}
dd {
margin-bottom: 1rem;
}
This element only includes the global attributes.
For examples, see the examples provided for the <dl> element.
{{Specifications}}
{{Compat}}