description list
Description list is ideal for more structured list data.
<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