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>
<!-- 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>