Comment pouvez-vous faire une liste à puces avec des chiffres en HTML

 <ol type = "1">
	<li>This will be Item 1</li>
	<li>This will be Item 2</li>
	<li>This will be Item 3</li>
    	...
	<li>This will be Item n-1</li>
	<li>This will be Item n</li>
</ol>
Breakable Bat