Definition Lists
A definition list is as ancient of a185 construct as you can find. However, these are sorely underused, which is a shame because they provide a great way to define terms and concepts.Definition lists consist of three elements: the definition list element, <dl>. . . </dl>; the definition term element, <dt>. . .</dt>, and the definition description element, <dd>. . .</dd>.You can have multiple instances of terms within a definition list (see Example 2-8).
Example 2-8. Multiple definitions within a list
The browser displays the term, and the definition itself is indented (see Figure 2-8).
<dl>
<dt>Furkid (n)</dt>
<dd>A pet treated as though it were one's child.</dd>
<dt>Nearshoring (v)</dt>
<dd>Restructuring a company's workforce by moving jobs to a nearby
foreign country.</dd>
<dt>Neurodiversity (n)</dt>
<dd>The variety of non-debilitating neurological behaviors and
abilities exhibited by the human race.</dd>
</dl>
Figure 2-8. Definition list displayed in a browser.
