Create ordered list using small Roman numerals in HTML and CSS

Description

The following code shows how to create ordered list using small Roman numerals.

Example


<html>
<body>
<!--from  w w  w .  j ava2  s .c  om-->
<p>Here is an ordered list using small Roman numerals:</p>

<ol type="i">
<li>Point number one</li>
<li>Point number two</li>
<li>Point number three</li>
</ol>

</body>
</html>

Click to view the demo

The code above generates the following result.

Create ordered list using small Roman numerals in HTML and CSS