Armin
0
Q:

html description list

this is a sample of how you put a description list in html:

<dl>
  <dt>
    Coffee
  </dt>
  <dd>
    black hot drink
  </dd>
  
  <dt>
    Milk
  </dt>
  <dd>  
    white cold drink
  </dd>
</dl>
1
<dl>
 <dt>Coffee</dt>
   <dd>Black hot drink</dd>
 <dt>Milk</dt>
   <dd>White cold drink</dd>
 </dl>
2
<dl>
  <lh>dl Header</lh>
  <dt>Term</dt>
	<dd>Definiton</dd>
  <dt>Term</dt>
	<dd>Definition</dd>
</dl>
2
<!-- Description lists --> 
<!-- They are list of terms with their corresponding definitions -->

<dt>HTML</dt>
	<dd>Stands for Hyper Text Markup Language</dd>

<dt>CSS</dt>
	<dd>Stands for Cascading Style Sheets</dd>
-1

New to Communities?

Join the community