Create ordered lists in HTML and CSS

Description

The following code shows how to create ordered lists.

Example


<!--   w ww  . j  a va 2 s .  co m-->
<!DOCTYPE HTML>
<html>
<body>
<ol>
<li>CSS</li>
<li>HTML</li>
<li>Javascript</li>
</ol>
</body>
</html>

Click to view the demo

The code above generates the following result.

Create ordered lists in HTML and CSS