A description list (or definition list, as it was called before HTML5) can be created with the dl element. It consists of name-value groups, where the name is given in the dt element, and the value is given in the dd element.
<dl>
<dt>name 1</dt>
<dd>value for 1</dd...