Table of Contents

HTML - dt element

About

dt 1) is an element that:

Example

This example shows a list of frequently asked questions (a FAQ) marked up using:

<article>
 <h1>FAQ</h1>
 <dl>
  <!-- question -->
  <dt>What do we want?</dt>
  <!-- answer -->
  <dd>Our data.</dd>
  
  <!-- question -->
  <dt>When do we want it?</dt>
  <!-- answer -->
  <dd>Now.</dd>
  
  <!-- question -->
  <dt>Where is it?</dt>
  <!-- answer -->
  <dd>We are not sure.</dd>

 </dl>
</article>