<!
--write html code to create ordered and unordered list using list attributes >
<!DOCTYPE html>
<html>
<body>
<h2 >An Unordered HTML List</h2>
<ul type="disc">
<li>Coffee</li
<li>Tea</li>
<li>Milk</li>
</ul>
<h2>An Ordered HTML List</h2>
<ol type="1" start="5" >
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</body>
</html>