Definition list. Used in conjunction with dt to define definition terms and dd, to definition descriptions.

The HTML <dl> tag is used for declaring a definition list.

Note that the definition term can be linked to more than one description. Also see HTML <dd> tag and HTML <dt> tag

Required Attributes

  • None.

Optional Attributes

Example

<dl>
	<dt><dfn>happiness</dfn></dt>
		<dd class="pronunciation">/'hæ p. nes/</dd>
		<dd class="part-of-speech"><i><abbr>n.</abbr></i></dd>
		<dd>The state of being happy.</dd>
		<dd>Good fortune; success. <q>Oh <b>happiness</b>! It worked!</q></dd>
	<dt><dfn>rejoice</dfn></dt>
		<dd class="pronunciation">/ri jois'/</dd>
		<dd><i class="part-of-speech"><abbr>v.intr.</abbr></i> To be delighted oneself.</dd>
		<dd><i class="part-of-speech"><abbr>v.tr.</abbr></i> To cause one to be delighted.</dd>
</dl>

Changes in HTML5

  • None.

Related Tags