HTML <dd> Tag

<h4>Band Members</h4>
<dl>
<dt>Vocals</dt>
<dd>Jason Bond</dd>
<dt>Guitar</dt>
<dd>James Bourne</dd>
<dd>Snoop Catt</dd>
<dt>Bass Guitar</dt>
<dd>Bruce Connery</dd>
<dt>Drums</dt>
<dd>Sean Willis</dd>
</dl>

The above example demonstrates usage of the <dd> element.

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

You can have multiple <dd> elements for each <dt> element. The above example demonstrates this — there are two guitarists.

You can also have multiple <dt> elements for each description too (if the same description matches multiple terms).