<dl>: The HTML Description List Element
1 Description
The HTML <dl>
element is used to contain
a list of terms (contained in <dt>
elements) and
their associated definitions (contained in <dd>
elements). <dl>
is an abbreviation for description list.
See Also
The description term<dt>
element.
The description definition <dd>
element.
2 Examples
<!DOCTYPE html>
<html>
<head>
<title>dl Example Page</title>
</head>
<body>
<h1>Glossary</h1>
<dl>
<dt>Balance Sheet</dt>
<dd>
A financial document which reports the value of all
assets, liabilities, and equity accounts at a
particular point in time.
</dd>
<dt>Income Statement</dt>
<dd>
A financial document which reports the revenue and
expenses for a period of time.
</dd>
<dt>Statement of Cash Flows</dt>
<dd>
Identifies inflows (receipt) of cash and outflows
(payment) of cash over a period of time.
</dd>
<dt>Statement of Owner's Equity</dt>
<dd>
Reports changes in equity for the given reporting period.
</dd>
</dl>
</body>
</html>
This document was last updated: