-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOl.htm
108 lines (107 loc) · 2.5 KB
/
Ol.htm
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE HTML 4.0 TRANSITIONAL PUBLIC "_//w3c//dtd html 4.0//en">
<HTML>
<HEAD>
<LINK REL=STYLESHEET TYPE="TEXT/CSS" HREF="STYLES.CSS">
<TITLE> HTML Tutorial </TITLE>
</HEAD>
<body class="MIC">
<H1> OL </H1>
This is to be used in the <SPAN CLASS= INTRO> <A HREF="BODY.HTM" TITLE= "Body-Contains the Formatting Tags. Its contents are displayed on the Browser"> BODY </A> </SPAN> Tag.
This tag is used to create <SPAN CLASS= INTRO> Ordered Lists </SPAN>.
This is a Container Tag and thus has to be closed.
<H4> Attributes </H4>
<OL>
<LI CLASS="HAND"> TYPE :
<OL>
<LI CLASS="DOC"> A :
<SPAN CLASS= MAIN> To create lists as
<BR>
A
<BR>
B
<BR>
C .... </SPAN>
<LI CLASS="DOC"> a :
<SPAN CLASS= MAIN> To create lists as
<BR>
a
<BR>
b
<BR>
c .... </SPAN>
<LI CLASS="DOC"> I :
<SPAN CLASS= MAIN> To create lists as
<BR>
I
<BR>
II
<BR>
III .... </SPAN>
<LI CLASS="DOC"> i :
<SPAN CLASS= MAIN> To create lists as
<BR>
i
<BR>
ii
<BR>
iii .... </SPAN>
<LI CLASS="DOC"> 1 :
<SPAN CLASS= MAIN> To create lists as
<BR>
1
<BR>
2
<BR>
3 .... </SPAN>
<BR>
(This is the <SPAN CLASS= MAIN> Default Type </SPAN>)
</OL>
<LI CLASS="HAND"> START :
<OL>
<LI CLASS="DOC"> N :
This specifies from which number the list is to be started
with. To create lists of any type, <SPAN CLASS= MAIN> the
value of 'N' depends on the Type </SPAN>. For eg. for the
type A B C ..., the value of N may comprise of any character
from A-Z. If any no is specified, the No. will be
automatically converted to that type. So one can specify the
digits and the digits will be automatically converted to that
type.
</OL>
</OL>
<H2> Syntax </H2>
<SPAN CLASS= MAIN><OL> </SPAN>
<BR>
<LI> ...Text...
<BR>
<LI> ...Text...
<BR>
....
<BR>
<SPAN CLASS= MAIN></OL> </SPAN>
<H3> Example </H3>
<SPAN CLASS= MAIN><OL> </SPAN>
<BR>
<LI> List Item1
<BR>
<LI> List Item2
<BR>
<SPAN CLASS= MAIN></OL> </SPAN>
<H5> Effect </H5>
<SPAN CLASS= MAIN> <OL> </SPAN>
<BR>
<LI> List Item1
<BR>
<LI> List Item2
<BR>
<SPAN CLASS= MAIN> </OL> </SPAN>
<SPAN CLASS="INTRO">
If the value of TYPE is 2 or more the LIST will start from that number.
</SPAN>
<BR>
<BR>
<A HREF=" INTRO.HTM" TITLE="HTML Tutorial Home-Introduction to HTML"> Home </A>
<BR>
<A HREF=" ABOUT.HTM" TITLE="About HTML Tutorial"> About </A>
</BODY>
</HTML>