<html>
<body>
<ol id="myOl">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
<p>Click the button to set the ordered list to use uppercase roman numbers.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
document.getElementById("myOl").type = "I";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_ol_type5 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 05 Sep 2022 15:53:10 GMT -->
</html>