Horje
HTML <dl> Tag

The <dl> tag defines a description list.

The <dl> tag is used in conjunction with <dt> (defines terms/names) and <dd> (describes each term/name).


How t create HTML <dl> Tag

 <dl>
  <dt>Coffee</dt>
  <dd>Black hot drink</dd>
  <dt>Milk</dt>
  <dd>White cold drink</dd>
</dl> 

Output should be:

How t create HTML <dl> Tag

What Type of Browsers will Support for HTML <dl> Tag

What Type of Browsers will Support for HTML <dl> Tag

What Type of Browsers will Support for HTML <div> Tag

<style>
dl {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
}
</style>

Output should be:

What Type of Browsers will Support for HTML <div> Tag





Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference