w3 description list code example
Example 1: description list html
<dl>
<dt>Wat komt aan bod in Web Development I?</dt>
<dd>HTML.</dd>
<dd>CSS.</dd>
</dl>
Example 2: html description list
<!-- 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>