<html>
<body>
<h2>A Nested List</h2>
<p>Lists can be nested (list inside list):</p>
<ol type= ‘a’ start=4>
<li>Coffee</li>
<li>Tea
<ul type= “square”>
<li>Black tea</li>
<li>Green tea</li>
</ul>
</li>
<li>Milk</li>
</ul>
</body>
</html>
Answers
Answered by
2
html>
<body>
<h2>A Nested List</h2>
<p>Lists can be nested (list inside list):</p>
<ol type= ‘a’ start=4>
<li>Coffee</li>
<li>Tea
<ul type= “square”>
<li>Black tea</li>
<li>Green tea</li>
</ul>
</li>
<li>Milk</li>
</ul>
</body>
</html>
Similar questions