HTML <dl>
query_builder | Christopher PisaniThe HTML element <dl> which stands for descripton list, is used to describe lists in pairs by the element <dt> as the title and <dd> with it's description.
<dl>
<dt>Firefox</dt>
<dt>Mozilla Firefox</dt>
<dt>Fx</dt>
<dd>
A free, open source, cross-platform,
graphical web browser developed by the
Mozilla Corporation and hundreds of
volunteers.
</dd>
<!-- Other terms and descriptions -->
</dl>
Available Attributes
No specific attributes are assigned for this element, other than the standard global attributes.