Warning:
This wiki has been archived and is now read-only.

Elements/dd

From HTML Wiki
Jump to: navigation, search

<dd>

The <dd> element represents the discription, definition, or value, part of a term-description group in a description list.


HTML Attributes

See global attributes.


Examples

Example A

[try it]

<dl>
  <dt>tarm1</dt>
  <dd>difinition1</dd>
  <dt>tarm2</dt>
  <dd>difinition2</dd>
</dl>


HTML Reference

The HTML5 specification defines the <dd> element in 4.5.10 The dd element.