Definition
The dt
HTML element represents a definition term. The content of the dt
element should be a phrase that is being defined. The dt
element should be placed inside the dl
element and before the dd
element.
Here’s an example of a definition list:
<dl>
<dt>Definition term</dt>
<dd>Definition description</dd>
</dl>