[Top] -- HTML Documentation Table of Contents


Lists
(Lists can be nested)

No notation:
3.0:
HTML 2.0
HTML 3.0 tag
N1.0:
N1.1:
N2.0:
Netscape extension with Navigator 1.0
Netscape extension with Navigator 1.1
Netscape extension with Navigator 2.0


Unordered Lists
(<li> before each list item) <ul><li></ul>
N1.0Bullet Type (for the whole list)
<ul type=disc>
<ul type=circle>
<ul type=square> (this and subsequent)
<li type=disc>
<li type=circle>
<li type=square>

Ordered List
(<li>before each list item) <ol><li></ol>
N1.0Numbering Type (for the whole list)
<ol type=A>
<ol type=a>
<ol type=l>
<ol type=i>
<ol type=1> (This and subsequent)
<li type=A>
<li type=a>
<li type=l>
<li type=i>
<li type=1>
N1.0Starting Number (for the whole list)
<ol value=?>
(This and subsequent) <li value=?>

Definition List
(<dt>=term, <dd>=definition)

Menu List
(<li>before each list item)

Directory List
(<li>before each list item)
<dir><li></dir>

[Top] -- HTML Documentation Table of Contents