¿Cómo se puede hacer una lista con balas con números 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