<html>
<head>
<style>
ul {
list-style-type: square;
}
ol {
list-style-type: upper-roman;
}
</style>
</head>
<body>
<h2>Changing the Marker Type of Lists</h2>
<p>Example of unordered lists:</p>
<ul>
<li> BMW </li>
<li>Mercedes-Benz</li>
<li> Audi </li>
<li> Volvo </li>
<li> Ferrari </li>
</ul>
<p>Example of ordered lists:</p>
<ol>
<li> Tesla </li>
<li> Porsche </li>
<li> Lexus </li>
<li> Lamborghini </li>
<li> Land Rover </li>
</ol>
</body>
</html>