HTML/Elements/dt
From W3C Wiki
Contents |
<dt>
The <dt> element represents the term, or name, part of a term-description group in a description list.
Point
- The dt element itself, when used in a dl element, does not indicate that its contents are a term being defined, but this can be indicated using the dfn element.
HTML Attributes
See global attributes.
Examples
Example A
[try it]
<dl> <dt>term1</dt> <dd>definition1</dd> <dt>term2</dt> <dd>definition2</dd> </dl>
HTML Reference
The HTML5 specification defines the <dt> element in 4.5.9 The dt element.

