Definition Lists

Definition lists are used to provide definitions for a sequence of items. The list itself is contained within <dl> and </dl> tags, the terms being defined are contained within <dt> and </dt> tags, and the definitions of those terms are contained within <dd> and </dd> tags.

<dl>
  <dt>Computer</dt>
  <dd>A machine designed to make very fast,
  very accurate mistakes.</dd>
  <dt>Programmer</dt>
  <dd>An organism that turns coffee into software.</dd>
</dl>
Computer
A machine designed to make very fast, very accurate mistakes.
Programmer
An organism that turns coffee into software.

<-- Previous Page

Unordered Lists

Next Page -->

Nested Lists