<ol type="number or letter type">
<li> List Item
<li> List Item
<li> List Item
</ol>
ol
element which requires both an <ol>
start tag and an </ol>
end tag. Between these tags you must place at least one or more list items, each of which are preceded by an <li>
start tag (end tag is optional). The three basic steps to creating a web page are:
<ol>
<li> Decide on a subject.
<li> Acquire the necessary tools and materials.
<li> Write the HTML source code.
</ol>
type
attribute in the <ol>
tag. The type
attribute employs one of the following values and "orders" the list according to the given example:
Value Ordering Style 1
1, 2, 3, ... i
i, ii, iii, ... I
I, II, III, ... a
a, b, c, ... A
A, B, C, ...
The three basic steps to creating a web page are:
<ol type="a">
<li> Decide on a subject.
<li> Acquire the necessary tools and materials.
<li> Write the HTML source code.
</ol>
Maroon Bold
. Nested inside these are second-level bulleted lists which appear in Green.
<ol type="1">
<li> Decide on a subject.
<ul type="disc">
<li> Business
<li> Family
<li> Hobby
</ul>
<li> Acquire the necessary tools and materials.
<ul type="disc">
<li> Web browser
<li> Text editor or HTML editor
<li> Graphics and clip-art
<li> Graphics editor
</ul>
<li> Write the HTML source code.
</ol>
start
attribute in the <ol>
tag. The start attribute specifies which character to use to start the ordering style of the respective list. Hence, if you wanted a list to display items 4, 5, and 6, you would use the type="1"
attribute-value pair along with the start="4"
attribute-value pair and then insert three list items. <b>Putting a Web Page on the Internet</b><br><br>
To create a web page, you must first:
<ol type="1">
<li> Decide on a subject.
<li> Acquire the necessary tools and materials.
<li> Write the HTML source code.
</ol>
Then once you have tested your page in a number of web browsers, you are ready to 'go live'. At this point you would:
<ol type="1" start="4">
<li> Find a web host.
<li> Upload your web page to the web host server.
<li> Brag to all your friends.
</ol>
Free Text Editors
Free Graphics Editors
Website Analysis Tools
Free Website Templates
See also:
If you need a .COM web address, you can get one quick and easy at...
<~ BACK | TOP | NEXT ~> |