1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<!-- Thanks for reading the source of this document. Hope you enjoy -->
<!-- what you find here. Please let me know if you find any errors. -->
<HEAD>
<TITLE>OL - Ordered list</TITLE>
<META NAME="description" CONTENT="Wilbur is the name for the next HTML standard (3.2). Here you can find all the tags in this proposal, including tips on usage and limitations.">
<META NAME="keywords" CONTENT="html authoring, reference, wilbur, tag overview">
<META NAME="generator" CONTENT="Orb v1.3 for OS/2">
<META NAME="author" CONTENT="Arnoud Engelfriet">
<LINK REV="made" HREF="mailto:galactus@htmlhelp.com" TITLE="Wilbur feedback">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#800080"
ALINK="#000080">
<H1 ALIGN=CENTER>OL - Ordered list</H1>
<TABLE>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Appearance:</B></TH>
<TD VALIGN=TOP><OL> </OL><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Attributes:</B></TH>
<TD VALIGN=TOP>TYPE=1|a|A|i|I, START=<CODE>n</CODE>, COMPACT<BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>Contents:</B></TH>
<TD VALIGN=TOP><A HREF="../list/li.html">LI</A><BR></TD>
</TR>
<TR>
<TH VALIGN=TOP ALIGN=LEFT><B>May occur in:</B></TH>
<TD VALIGN=TOP><A HREF="../body/body.html">BODY</A>, <A HREF="../block/div.html">DIV</A>, <A HREF="../block/center.html">CENTER</A>, <A HREF="../block/blockquote.html">BLOCKQUOTE</A>, <A HREF="../block/form.html">FORM</A>, <A HREF="../table/th.html">TH</A>, <A HREF="../table/td.html">TD</A> and <A HREF="../list/dd.html">DD</A>, <A HREF="../list/li.html">LI</A>.<BR></TD>
</TR>
</TABLE>
<P>
The OL tag marks up an ordered list of items. Each item should be
marked up with a <A HREF="../list/li.html">LI</A>, and it will be displayed with a number in
front of it. The appearance of the number can be controlled with the
TYPE attribute:
<UL>
<LI>1 - Arabic numbers (default) (1, 2, 3, 4, ...)
<LI>a - Alphanumeric, lowercase (a, b, c, d, ...)
<LI>A - Alphanumeric, uppercase (A, B, C, D, ...)
<LI>i - Roman numbers, lowercase (i, ii, iii, iv, ...)
<LI>I - Roman numbers, uppercase (I, II, III, IV, ...)
</UL>
<P>
The START attribute indicates where the list should start. The COMPACT
attribute indicates that the list contains only short list items, so
it may be rendered in a more compact way. This is currently not widely
supported.
<H2>Notes:</H2>
<UL>
<LI>If you want a list with bullets rather than numbers, use <A HREF="../list/ul.html">UL</A>.
<LI>Not all browsers support TYPE and START, so do not assume that
they will work for your visitor.
</UL>
<HR>
<CENTER>
<P>
<B><IMG SRC="../icon/wdglogo-small.gif" WIDTH=105 HEIGHT=40 ALT="Web Design Group" ALIGN=RIGHT></B><BR>
<A HREF="../index.html" TITLE="Index for Wilbur">Wilbur index</A> ~
<A HREF="../overview.html" TITLE="Overview of HTML 3.2 tags">Tag overview</A> ~
<A HREF="mailto:galactus@htmlhelp.com" TITLE="Wilbur reference feedback">Feedback</A>
<P>
<SMALL>
Copyright © 1997 <A HREF="http://www.stack.nl/%7Egalactus/">Arnoud "Galactus" Engelfriet</A>.
</SMALL>
</CENTER>
</BODY>
</HTML>
|