1. Home
  2. Html
  3. Description list

Description list is ideal for more structured list data.

#html#list
<dl>
    <dt>Colors</dt>
    <dd>Blue</dd>
    <dd>Red</dd>
    <dd>Yellow</dd>    
    <dt>Shapes</dt>
    <dd>Circle</dd>
    <dd>Square</dd>
    <dd>Triangle</dd>
</dl>
Output:
Colors
Blue
Red
Yellow
Shapes
Circle
Square
Triangle
copy
Full Html cheatsheet