List tags and attributes
<ol></ol> Creates a numbered (organized) list.
type Determines a numeric style. May have values:
  • "A" - big latin letters
  • "a" - small latin letters
  • "I" - big Roman digits
  • "i" - small Roman digits
  • "1" - Arabian digits
start Determines a number which numbering start from.
<ul></ul> Uses bullets and doesn't number items.
type Determines a bullet face. May have values: "disc", "circle", "square".
<li> </li> Creates a list's item.
<dl></dl> It makes a list of definitions.
<dt> It goes through the definition terms.
<dd> Key aspect in defining definitions.

Examples

Just numeric list:

<ol>
<li>HTML</li>
<li>XML</li>
<li>XHTML</li>
</ol>
  1. HTML
  2. XML
  3. XHTML

More complex numeric list:

<ol type="I" start="3">
<li>HTML</li>
<li>XML</li>
<li>XHTML</li>
</ol>
  1. HTML
  2. XML
  3. XHTML

List with bullet:

<ul>
<li>Basketball</li>
<li>Football</li>
<li>Baseball</li>
</ul>
  • Basketball
  • Football
  • Baseball

List with square bullet:

<ul type="square">
<li>Basketball</li>
<li>Football</li>
<li>Baseball</li>
</ul>
  • Basketball
  • Football
  • Baseball

List of definitions:

<dl>
<dt>Term #1</dt>
<dd>Determination of term #1</dd>
<dt>Term #2</dt>
<dd>Determination of term #2</dd>
</dl>
Term #1
Determination of term #1
Term #2
Determination of term #2

HTML menu.