This is used to display a Numbering system
Ordered list type
{ A,a,I,i} we use <li> list item tag
<html>
<head>
<title>This is my first web page</title>
</head>
<body>
<ol type =A>
<li>HND</li>
<li>ICT</li>
</ol>
</body></html>
<html>
<head>
<title>This is my first web page</title>
</head>
<body>
<ol type =a>
<li>HND</li>
<li>NCC</li>
</ol>
</body></html>
<html>
<head>
<title>This is my first web page</title>
</head>
<body>
<ol type =I>
<li>HND</li>
<li>NCC</li>
</ol>
</body></html>
<html>
<head>
<title>This is my first web page</title>
</head>
<body>
<ol type =i>
<li>NCC</li>
<li>ICT</li>
</ol>
</body></html>
No comments:
Post a Comment