asp.net.ph

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

<dd> Element


Indicates a definition description in a definition list.HTML 2, 3.2, 4, 4.01, 5

HTML Syntax

Remarks

The <dd> element provides the description, definition, or value for the preceding definition term ( <dt> element ) in a description list ( <dl> element ).

The dd element can only be used within a <dl> element, which declares the start of a definition list. It follows immediately after a <dt> element, which in turn indicates a definition term.

This element is a block element, and the definition description is usually indented from the definition list.

A <dd> element’s end tag can be omitted if the <dd> element is immediately followed by another <dd> element or a <dt> element, or if there is no more content in the parent element.

Attributes

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

Example

The following shows how the dd 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

External References

See Also

DL   DT   Using Lists in HTML


Need a break ?
Suggested Reading

Check out related books at Amazon

© 2025 Reynald Nuñez and asp.net.ph.

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