- Description
- Tag <DT> is a part of a group of elements <DL>, <DT>, <DD>, which are aimed for creating the list of definitions. Each list begins with the package <DL>, the part of which is tag <DT> and tag <DD>. Tag <DT> creates the term and tag <DD> defines the definition of this term.
Closing tag </DT> is not optional, because the next tag informs about the end of the previous element. Though, closing all the tags is a good style.
-
1 2 3 4 5 6 7 8 9 10 11 12
<dl> <dt>Term 1</dt> <dd>Definition of term 1</dd> <dt>Term 2</dt> <dd>Definition of term 2</dd> </dl>
- Parameters
- No
- Closing tag
- Is not optional.


