HTML Description List is used to list item with a description of each term. HTML Description List is also called as HTML Definition List. The <dl>, <dt> and <dd> tags are used to define description list.
There are 3 HTML description list tags are given below.
- <dl> tag defines the description list.
- <dt> tag defines data term.
- <dd> tag defines data definition or description.
Syntax for Description List or Definition (ul) :
<dl>
<dt>Item 1</dt>
<dd>- Item 1 description</dd>
<dt>Item 2</dt>
<dd>- Item 2 description</dd>
</dl>
Let's see below example to understand HTML definition or description Lists in details.
Comments