HTML Discription List
A description list is a list of terms, with a description of each term.
A Discription list starts with the <dl>
tag, the <dt>
tag defines the term (name), and the <dd>
tag describes each term:
<dl>
<dt>Trees</dt>
<dd>- Trees are found in Forest.</dd>
<dt>Tea</dt>
<dd>- Black and hot.</dd>
</dl>
- Trees
- - Trees are found in forest.
- Tea
- - Black and hot.