Organising information using lists.
Contents
Description List
Creates a list of items accompanied by their descriptions.
Demo:
- Item One
- Description One
- Item Two
- Description Two
- Item Three
- Description Three
<dl> <dt>Item One</dt> <dd>Description One</dd> <dt>Item Two</dt> <dd>Description Two</dd> <dt>Item Three</dt> <dd>Description Three</dd> </dl>
Ordered List
Creates a new ordered list. On Wacky, this can only be used to create numerical lists.
Demo:
- One
- Two
- Three
<ol> <li>One</li> <li>Two</li> <li>Three</li> </ol>
Using the
<start="">
attribute:- One
- Two
- Three
<ol start="11"> <li>One</li> <li>Two</li> <li>Three</li> </ol>
Unordered List
Creates a bullet point list.
Demo:
- One
- Two
- Three
<ul> <li>One</li> <li>Two</li> <li>Three</li> </ul>
Back to HTML ReferenceSpot something we didn't? Let us know!