HTML Definition List

Definition List

  • A definition list is a list of terms, with a definition of each term.
  • We can create definition list by using the <dl>….. </dl> with <dt> and <dd> tag.
  • The <dt>…. </dt> tag is used to define the term; whereas, the <dd> tag is used to give the term’s definition.


Example:
<dl>
<dt>College</dt>
<dd>A boring place</dd>
<dt>Library</dt>
<dd>Learn as much as you can</dd>
<dt>Railway Station</dt>
<dd>too much croweded</dd>
</dl>

Result

College
A boring place
Library
Learn as much as you can
Railway Station
too much croweded

Cristle Academy

Compiler