You are here : htmlHTML 5dl

<dl> - HTML 5

The <dl> tag defines a description list.

The <dl> tag is used in conjunction with <dt> (defines terms/names) and <dd> (describes each term/name).


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