Wikipad – Unofficial Coding Documentation

List Elements

Organising information using lists.

Contents

  1. Description List <dl>, <dd>, <dt>
  2. Ordered List <ol>, <li>
  3. Unordered List <ul>, <li>

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:

  1. One
  2. Two
  3. Three
<ol>
  <li>One</li>
  <li>Two</li>
  <li>Three</li>
</ol>

Using the <start=""> attribute:

  1. One
  2. Two
  3. 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!