dd (Definition Description) Element
<dd> (Definition Description Element)
Explanation
DD (Definition Description) element is used to define the "sub heading/sub title".
<dl>
<dt>Text</dt>
<dd>Text</dd>
<dl>
Example Code:
Result :
- The sub title will be aligned towards center i.e. text will be moved towards the center.
- Place this element inside <dl>.
- <dt> should be placed before this element in order to show the title.
<dt> is used to display the title of a content.
It is available in the previous versions of HTML.
It supports both
Global Attributes and
Event Attributes in HTML5.
Limitations:
It is applicable to all major browsers.