The HTML <dl> tag short of definition list. The <dl> tag create a list, each list item contains two entries; a term and a description.
Example of Code
<body>
<dl>
<dt>Definition List</dt>
<dd>A list of terms and their definitions/descriptions.</dd>
<dt>HTML</dt>
<dd>An HTML tutorial.</dd>
<dt>PHP</dt>
<dd>An PHP tutorial.</dd>
</dl>
</body>
Output
- Definition List
- A list of terms and their definitions/descriptions.
- HTML
- An HTML tutorial.
- PHP
- An PHP tutorial.
