Horje
How to create HTML Description Lists

HTML also supports description lists.

A description list is a list of terms, with a description of each term.


Full Example of HTML Description Lists

The <dl> tag defines the description list, the <dt> tag defines the term (name), and the <dd> tag describes each term:
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h2>A Description List</h2>

<dl>
  <dt>Coffee</dt>
  <dd>- black hot drink</dd>
  <dt>Milk</dt>
  <dd>- white cold drink</dd>
</dl>

</body>
</html>

Output should be:

Full Example of HTML Description Lists





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


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