<html>
<body>
<h2>The start attribute</h2>
<p>By default, an ordered list will start counting from 1. Use the start attribute to start counting from a specified number:</p>
<ol start="50">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<ol type="I" start="50">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</body>
<!-- Mirrored from www.w3schools.com/html/tryit.asp?filename=tryhtml_lists_start by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:33:16 GMT -->
</html>