html
  1. html-dd-tag

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.

<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>
Try Playground
  • <dl> represents the description list.
  • <dt> represents the term being defined.
  • <dd> represents the description or definition of the term.
  • The <dd> tag follows the <dt> tag to provide the corresponding description for that term within the list.
Published on: