You are here : htmlHTML 5dd

<dd> - HTML 5

The <dd> tag is used to describe a term/name in a description list.

The <dd> tag is used in conjunction with <dl> (defines a description list) and <dt> (defines terms/names).

Inside a <dd> tag you can put paragraphs, line breaks, images, links, lists, etc.


Syntax

    <dl>	 	<dt>Coffee</dt>	  <dd>Black hot drink</dd>	 	<dt>Milk</dt>	  <dd>White cold drink</dd>	</dl>


Example

    <dl>	 	<dt>Coffee</dt>	  <dd>Black hot drink</dd>	 	<dt>Milk</dt>	  <dd>White cold drink</dd>	</dl>


Output / Return Value


Limitations


Alternatives / See Also


Reference