i have to make terms and conditions page in html so i want to give them a number but some conditions have their sub point so i want to show them like below example.
me the first point
1.1 and me the sub point
me the second point
me the third point
me the forth
4.1 and me the sub point
it is possible to give them such a number format using css
<style>
ol {list-style:decimal}
</style>
</head>
<body>
<ol>
<li>me the first point
<ol><li>me the sub point</li></ol>
</li>
<li>me the second point</li>
<li>me the third point</li>
<li>me the forth point</li>
</ol>
</body>