Html 5 dl tag

In the html 5 <dl> tag is used to detail for definition list. In the definition list includes some description and terms about <dl> tag.Each list includes one or more entries and terms.<dt> tag we will use inside of <dl> tag .

Syntax:

<dl> Definition List </dl>

Example Code

<!DOCTYPE html>
<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