HTML <dt> Tag

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

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

The <dt> element represents the term, or name, part of a term-description group in a description list.

You can have multiple <dt> elements for each <dd> element. The above example demonstrates this — Jason Bond plays Bass Guitar as well as Vocals.

You can also have multiple <dd> elements for each term too (if the same term matches multiple descriptions).