files/en-us/web/html/reference/elements/dd/index.md
The <dd> HTML element provides the description, definition, or value for the preceding term ({{HTMLElement("dt")}}) in a description list ({{HTMLElement("dl")}}).
{{InteractiveExample("HTML Demo: <dd>", "tabbed-standard")}}
<p>Cryptids of Cornwall:</p>
<dl>
<dt>Beast of Bodmin</dt>
<dd>A large feline inhabiting Bodmin Moor.</dd>
<dt>Morgawr</dt>
<dd>A sea serpent.</dd>
<dt>Owlman</dt>
<dd>A giant owl-like creature.</dd>
</dl>
p,
dt {
font-weight: bold;
}
dl,
dd {
font-size: 0.9rem;
}
dd {
margin-bottom: 1em;
}
This element only includes the global attributes.
For examples, see the examples provided for the <dl> element.
{{Specifications}}
{{Compat}}