<!doctype html>
<html lang="en">
<head>
<title>Sample Web page for demo of Lists</title>
</head>
<body bgcolor=pink>
<p>Take note of the attribute type .It will change the bullet type . </p>
<h2>My Hobbies</h2>
<ol type='A'>
<li>Sports</li>
<ul type="square">
<li>Tennis</li>
<li>Football</li>
<li>Cricket</li>
</ul>
<li> Music</li>
<ul>
<li>Rock</li>
<li>Classical</li>
<li>Country Music</li>
</ul>
<li> Books</li>
<ul type="disc">
<li>Fiction</li>
<li>Thrillers</li>
<li>Comics</li>
</ul>
</ol>
</body>
</html>