HTML <dt> tag
Usage
Specifies a definition term within a definition list (dl). Each definition term should be accompanied by a definition of the term's meaning (dd).
Example
Code:
<dl>
<dt>Cat</dt>
<dd>Small, furry, sleeps a lot</dd>
<dt>Dog</dt>
<dd>Big, hairy, likes to eat bones and chase cats</dd>
</dl>
Output:
- Cat
- Small, furry, sleeps a lot
- Dog
- Big, hairy, likes to eat bones and chase cats
Required Attributes
- none
Optional Attributes
- none