What Is The Use Of ORDERED LIST
In HTML.
The ordered list is used to
display the list of items in a specific order. By default, numbers are
displayed in a web browser when an ordered list is used. We can change the
style using the Type attribute. To specify the item number for a given
list item, Value attribute is used. Ordered list automatically starts
with the number 1 but you can also start a list with a different number style.
You can change the number
styles for ordered list using Type attribute with one of the following
options:
To specify the starting
point of the numbering scheme, Start attribute is used.
For example, see
the below table. You will find that everything is similar but I use <OL>
list type in line no.9 and used Number style “I”. If you want to used different
Number styles replace I with other styles and see the result.
Try this table,
<HTML>
<HEAD>
<TITLE>INSERTING
LIST</TITLE>
</HEAD>
<BODY
BGCOLOR="Blue" LEFTMARGIN=100, TOPMARGIN=25>
<B><Font
Size="6" Color="Yellow">
QUALITIES
OF A GOOD STUDEN</Font></B>
<Font
Size="6" Color="White"><Font Face="Time New
Roman">
<OL
type="I">
<LI>Attitude
<LI>Academic
Skills
<LI>Ability
<LI>perceptiveness
<LI>Self-Discipline</OL>
</Font>
</BODY>
</HTML>
0 comments:
Post a Comment