<html>
<body>
<ul id="myList">
<li>Coffee</li>
<li>Tea</li>
<li>Water</li>
<li>Soda</li>
</ul>
<button type="button" onclick="myFunction()">Change list style</button>
<script>
function myFunction() {
document.getElementById("myList").style.listStyle = "square inside";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_style_liststyle2 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 14:06:15 GMT -->
</html>