<html>
<head>
<title>Different types of lists</title>
</head>
<body>
<h3 align="center">To illustrate different types of Lists Tags</h3>
<hr color="red">
<p>An Unordered List:</p>
<ul>
<li>Beetroot</li>
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
</ul>
<p>An Ordered List:</p>
<ol>
<li>Coffee</li>
<li>Tea</li>
<ol type="a">
<li>Black Tea</li>
<li>Green Tea</li>
<ol type="i">
<li>China</li>
<li>Africa</li>
</ol>
</ol>
<li>Milk</li>
</ol>
<dl>
<dt>HTML</dt>
<dd>This stands for Hyper Text Markup Language</dd>
<dt>HTTP</dt>
<dd>This stands for Hyper Text Transfer Protocol</dd>
</dl>
</body>
</html>
</html>