Edit This Code:
<!DOCTYPE html>
<html>
<body>

<ol id="myOl">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

<p>Click the button to set the start value of the ordered list to "75", instead of "1".</p>

<button onclick="myFunction()">Try it</button>

<script>
function myFunction() {
    document.getElementById("myOl").start = "75";
}
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy