Why create a separate <ul>
when visually both unordered lists and ordered lists look the same?
<head>
<title>Changing Numbering Type in an HTML Unordered List Using CSS</title>
<style>
ol {
list-style-type: disc;
}
</style>
</head>
<body>
<ol>
<li>Fasten your seatbelt</li>
<li>Start the car's engine</li>
<li>Look around and go</li>
</ol>
<hr/>
<ul>
<li>Fasten your seatbelt</li>
<li>Start the car's engine</li>
<li>Look around and go</li>
</ul>
</body>
</html>