HTML <dd> Tag
- The
<dd>
tag in HTML is used in conjunction with the<dl>
(description list) and<dt>
(description term) tags to create a description list. - It represents the description or definition part of a term or item within this list.
<dd>
tag in HTML is used in conjunction with the <dl>
(description list) and <dt>
(description term) tags to create a description list.<dl>
<dt>HTML</dt>
<dd>HyperText Markup Language - the standard markup language for creating web pages.</dd>
<dt>CSS</dt>
<dd>Cascading Style Sheets - used for styling the presentation of web documents.</dd>
<dt>JavaScript</dt>
<dd>A programming language that allows you to make web pages interactive and dynamic.</dd>
</dl>
<dl>
represents the description list.<dt>
represents the term being defined.<dd>
represents the description or definition of the term.<dd>
tag follows the <dt>
tag to provide the corresponding description for that term within the list.