A description list consists of terms accompanied by a description for each term.
The <dl> tag is used to specify the description list, the <dt> tag identifies the term (name), and the <dd> tag provides the description for each term.
Example
<dl> <dt>Coffee</dt> <dd>– black hot drink</dd> <dt>Milk</dt> <dd>– white cold drink</dd> </dl> |