List
Tags
Demonstrations of various lists and the
corresponding HTML code used to produce those lists:
Ordered Lists:
Tags and possible modifier attributes:
<OL>..</OL> START="#"
and TYPE=" " = {A, a, i, I}
Unordered Lists:
Tags and possible modifier attributes:
<UL>..</UL> TYPE="
" = {disc, circle, square}
Nested Ordered and
Unordered Lists
Indenting Text without
bullets or numbers, using <blockquote> </blockquote>:
tags. Example and corresponding code follows.
This is indented one tab
space.
Two indentations.
Indented 3 times.
|
<blockquote>
This
is indented one tab space.
<blockquote>
<p>Two
indentations.</p>
<blockquote>
Indented 3 times.
</blockquote>
</blockquote>
</blockquote> |
|