content logo

Learn HTML:

Html dd tag

The HTML <dd> tag is used for specifying a definition description in a definition list.

A definition list is similar to other lists but in a definition list, each list item contains two entries; a term and a description.

Example

<!DOCTYPE html>
<html>
<head>
<title>HTML dd Tag</title>
</head>
<body>
<dl>
<dt>Definition List</dt>
<dd>A list of terms and their definitions/descriptions.</dd>
<dt>HTML</dt>
<dd>An HTML tutorial.</dd>
<dt>PHP</dt>
<dd>An PHP tutorial.</dd>
</dl>
</body>
</html>

 

#

HTML DD Tag Definition

#

HTML DD Tag Usage

#

HTML DD Tag Examples