HTML - dd Element

About

dd 1) is a element that

Example: Glossary

A dl can be used to define a vocabulary list, like in a dictionary.

In the following example, each entry,:

  • given by a dt with a dfn,
  • has several dds, showing the various parts of the definition.
<dl>

  <!-- Entry -->
 <dt><dfn>happiness</dfn></dt>
 <dd class="pronunciation">/ˈhæpinəs/</dd>
 <dd class="part-of-speech"><i><abbr>n.</abbr></i></dd>
 <dd>The state of being happy.</dd>
 <dd>Good fortune; success. <q>Oh <b>happiness</b>! It worked!</q></dd>

  <!-- Entry -->
 <dt><dfn>rejoice</dfn></dt>
 <dd class="pronunciation">/rɪˈdʒɔɪs/</dd>
 <dd><i class="part-of-speech"><abbr>v.intr.</abbr></i> To be delighted oneself.</dd>
 <dd><i class="part-of-speech"><abbr>v.tr.</abbr></i> To cause one to be delighted.</dd>

</dl>





Discover More
HTML - Description List (dl)

dl is an list HTML element that represents a description list The lists has several element that are represented by: the dt element - the description term the dd element - the name A Output:...
HTML - dt element

dt is an element that: represents the term that would be describe by the dd element in a description list (dl element) This example shows a list of frequently asked questions (a FAQ) marked...



Share this page:
Follow us:
Task Runner