HTML Element: <dd>
[this page | pdf | back links]
The HTML <dd> element indicates a
description or value of an entry in a description list, i.e. a <dl> element,
typically with each <dd> element
linked to an associated <dt>
element, that defines the term which the <dd>
element describes, e.g.:
<dl>
<dt>UK</dt><dd>United Kingdom</dd>
<dt>USA</dt><dd>United States of
America</dd>
</dl>
Text, paragraphs, images
etc. can be placed inside <dd>
and <dt> elements.
The attributes
it can take are HTML
global attributes and HTML event attributes.
To create or access such
an element in JavaScript
see here. The
corresponding HTML DOM
object supports standard
DOM properties and methods. The default style applicable to this element is
shown here.
NAVIGATION LINKS
Contents | Prev | Next | HTML Elements