Example 2

<html>
<head>
<title>HTML-Example 2</title>
</head>
<body>
 
We are learning how to make lists using simple HTML code.<br>
 
<font face="arial" size=2 color="blue"><p>
 
<b>HTML ordered list</b> - using font face arial size 3 color blue.<p>
<ol>
<li>Coffee</li>
<li>Milk</li>
<li>Tea</li>
<li>Fruit juice</li>
</ol>
<p>
 
<b>HTML unordered list</b><p>
<ul>
<li>Apple</li>
<li>Orange</li>
<li>Banana</li>
<li>Grapes</li>
</ul>
<p>
</font>
 
<font face="arial" size=2>
 
Above are examples of ordered list and unordered lists.
 
</font>
 
</body>
</html>