Html dd Tag

In the <dd> tag is used to specify a definition description for list item and which list must need to at least one list item. You can join with <dd> tag with in <dl> and <dt> tag and you can use paragraphs, links, list and images inside of <dd> tag.which tag is supported to all main browsers.

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