Example of ordered- list in HTML
<html>
<head>
<title>Ordered Lists</title>
</head>
<body bgcolor="#FFFFFF">
<ol type = "1">
<li>One</li>
<li>Two</li>
<ol>
<html>
<head>
<title>Ordered Lists</title>
</head>
<body bgcolor="#FFFFFF">
<ol type = "1">
<li>One</li>
<li>Two</li>
<ol>
<li>that is </li>
<li>that's nice </li>
<li>that's good </li>
</ol>
<li>Three</li>
<li>Four</li>
</ol>
</body>
</html>
(NOTE- You can also use more type by using 1 or number( this is default) ,
a or lower-alpha , A or upper-alpha , i or lower-roman &amp; I or upper-roman)
OUTPUT-
Ordered Lists
- One
- Two
- that is
- that's nice
- that's good
- Three
- Four
No comments:
Post a Comment