dt: The Description Term element
The <dt>
HTML element specifies a term in a description or definition list, and as such must be used inside a <dl>
element. It is usually followed by a <dd>
element; however, multiple <dt>
elements in a row indicate several terms that are all defined by the immediate next <dd>
element.
Attributes
Global attributes
accesskey
Specifies a keyboard shortcut to activate or focus an element.
aria-*
Defines accessibility properties and states for assistive technologies.
class
Specifies one or more CSS class names for styling the element.
data-*
Stores custom data private to the page or application.
dir
Sets the text direction (left-to-right, right-to-left, or auto).
hidden
Hides the element from display and assistive technologies.
id
Defines a unique identifier for the element within the document.
inputmode
Hints which virtual keyboard type to display on mobile devices.
itemid
Provides a global identifier for microdata items.
itemprop
Defines a property name-value pair for microdata.
itemref
Associates properties with an item via element IDs for microdata.
itemscope
Creates a new microdata item container.
itemtype
Specifies the vocabulary URL for microdata items (like Schema.org).
lang
Specifies the primary language of the element’s content.
nonce
Provides a cryptographic nonce for Content Security Policy.
role
Defines the element’s semantic role for accessibility.
tabindex
Controls keyboard navigation order and focusability.
title
Provides advisory information displayed as a tooltip.
Example
<dl>
<dt>Static Site Generator</dt>
<dt>SSG</dt>
<dd>A tool that generates a full static HTML website from source files, often used for blogs and simple websites in the IndieWeb community.</dd>
<dt>RSS</dt>
<dt>Really Simple Syndication</dt>
<dd>A web feed format that allows users to access updates to websites in a standardized, computer-readable format.</dd>
</dl>