asp.net.ph

Skip Navigation LinksHome > Abakada: Back to Basics > Language References > HTML Elements > DT Element

<dt> Element


Specifies a term in a definition list.HTML 2, 3.2, 4, 4.01, 5

HTML Syntax

Remarks

The DT element can only be used within a DL element. Usually a term to be defined in the DT tag is followed by a DD element, that contains the definition description of the term.

This element is a block element.

A <dt> element’s end tag can be omitted if the <dt> element is immediately followed by another <dt> element or a <dd> element.

Attributes

The <dt> element has no attribute of its own, but supports global attributes common to all HTML elements.

Example

The following shows how the DT element may be used.

<dl>
   <dt>W3C
      <dd>World Wide Web Consortium
   <dt>HTML
      <dd>HyperText Markup Language
   <dt>CSS
      <dd>Cascading Style Sheets
</dl>

which would render on a Web page as

W3C
World Wide Web Consortium
HTML
HyperText Markup Language
CSS
Cascading Style Sheets
See Also

DD   DL   Using Lists in HTML



Check out related books at Amazon

© 2025 Reynald Nuñez and asp.net.ph. All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note