<DT>...[</DT>]

W3 3.2y
4.0y
NS 3.0y
4.0y
IE 3.0y
4.0y
TV 1.2y
2.1y
Description

The term described in a definition list. This element is only valid inside a DL element.


DTD
<!ELEMENT DT - O (%inline;)*           -- definition term -->
<!ATTLIST DT
  %attrs;                              -- %coreattrs, %i18n, %events --
  >
from the HTML 4.0 DTD, "Copyright © World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved."
Attributes

Core attributes: class id style title
Internationalization attributes: dir lang
Events: onclick ondblclick onmousedown onmouseup onmouseover onmousemove onmouseout onkeypress onkeydown onkeyup


Examples

Source
This is what a definition list look like :
<DL>
<DT>Term
<DD>This is the definition of the term. So normally here is where
you would explain what the earlier mentioned term means.
</DL>
 
Result
This is what a definition list look like :
Term
This is the definition of the term. So normally here is where you would explain what the earlier mentioned term means.


Statistics