Definition Lists
Definition Lists are used when specifying a list of
terms and definitions. Definition Lists start with
<DL>
The Definition Term is indicated by <DT>.
The Definition for the term follows below, starting
with <DD>
The <DL> must have a closing </DL>;
the closing tag for <DT> and <DD>
is optional.
<DL>
<DT> Term
<DD> Definition of term.
<DT> Term 2
<DD> Definition of term 2.
</DL>
|
- Term
- Definition of term.
- Term 2
- Definition of term 2.
|
Additional Resources:
HTML 4.01 Tags
|