Html 5 dd tag

In the <dd> tag is used to specify a definition description for list and which list is similar to other lists and which list must need to at least one item. Which list can be linked to more than one description.

Syntax:

<dl>
   <dt> ... </dt>
   <dd> ... </dd>
</dl>

Example Code

<dl>
<dt> This is definition List </dt>
  <dd>This is definition descriptions. </dd>
  <dt>This is Ordered List </dt>
</dl>

Out Put:



This is definition List
This is definition descriptions.
This is Ordered List

In the above example had three lines first one is definition List and second one is definition descriptions and third one is Ordered List.





Content