HTML Nested Lists
A list within a list is known as nested lists.HTML can display items as nested lists.A nested list can have differenttypes of lists. For example, an ordered list can be nested within an unordered list.
Example
<html>
<head>
<title
Minds Mania
</title>
</head>
<body>
<ul type="square">
<li>item 1
<li>item 2
<ol type="I" start="3">
<li>sub item 1
<li>sub item 2
</ol>
</li>
<li>item 3
</ul>
</body>
</html>
Next Example
<html>
<head>
<title
Minds Mania
</title>
</head>
<body>
<h2>List Of Books</h2>
<ol>
<li>Islamic
<ul type="disc">
<li>Holy Quran
<li>Muslim Sharif
</ul>
<li>English
<ul type="square">
<li>English Guru
<li>Computer Graphics
</ul>
</ol>
</body>
</html>