Web Development HTML Guide - Learn HTML
Developer Tutorials
ASP
CGI & Perl
CSS
Flash
HTML
Java
JavaScript
Linux
MySQL
PHP
Photoshop
Python
Wireless
XML



Developer Manuals
Learn HTML
Learn PHP
Learn MySQL
Learn CSS
Learn Pear


Developer Scripts
ASP Scripts
ASP.NET Scripts
CGI & Perl Scripts
Flash Scripts
Java Scripts
JavaScript Scripts
PHP Scripts
Python Scripts
Remotely Hosted Scripts
Tools & Utilities Scripts
XML Scripts

Developer Resources
Developer Tools
Developer News
Developer Forums
Developer Content
Developer Book Reviews
Survey Software

Web Hosting Directory
Budget Web Hosting
ColdFusion Hosting
Dedicated Servers
Domain Hosting
E-Commerce Hosting
Email Hosting
Free Web Hosting
Linux Web Hosting
Managed Hosting
Reseller Hosting
Small Business Hosting
Windows Web Hosting

<DD>

Usage Recommendation
use it if you use <DL ...>

<DD> sets the description part of a term/description pair in a definition list.

this code produces this
<DL>

<DT>flame
<DD>an ugly argument in a newsgroup

<DT>spam
<DD>annoying unrequested email

<DT>troll
<DD>someone who start flames
    by posting stupid things

</DL>
flame
an ugly argument in a newsgroup
spam
annoying unrequested email
troll
someone who start flames by posting stupid things

Although it is acceptable to put a </DD> at the end of the element, the end tag is not required and is rarely used.