HTML Tutorial
The <dd>
tag (short for "description") defines the description or value of a term within a <dl>
(definition list). It is used together with the <dt>
tag (definition term) to create a structured list of terms and their corresponding descriptions.
<dt>
tag.<dd>
tag, which must be placed immediately after the <dt>
tag.<dl>
<dt>Name</dt>
<dd>John Doe</dd>
<dt>Age</dt>
<dd>30</dd>
<dt>Occupation</dt>
<dd>Software Engineer</dd>
</dl>
Output:
Name: John Doe Age: 30 Occupation: Software Engineer
<dt>
tag for the term and the <dd>
tag for the description to ensure proper semantic structure.