HyperTextMarkupLanguage

HTML basics

| Home | HTML basics - Agenda |

Basic tags

DL - Definition list

Appearance: <DL> </DL>
Attributes: COMPACT

A Definition List is a list of items based on definition terms <DT> and definition data <DD> and having the following format:

<DL>
  <DT>John
   <DD>played lead guitar
  <DT>Paul
   <DD>played bass guitar
  <DT>George
   <DD>played rhythm guitar
  <DT>Ringo
   <DD>played drums
</DL>


would produce:

John
played lead guitar
Paul
played bass guitar
George
played rhythm guitar
Ringo
played drums

| Home | HTML basics - Agenda |

T07D031