Create an ordered list with capital letters and starting at point 4 in HTML and CSS

Description

The following code shows how to create an ordered list with capital letters and starting at point 4.

Example


<!--   w  w  w .j  a v  a  2s .c  om-->
<html>
<body>

<p>Here is an ordered list using capital letters and starting at point 4, which is a letter D:</p>

<ol type="A" start="4">
<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 an ordered list with capital letters and starting at point 4 in HTML and CSS