Web Development Practical 4
Web Development Practical 4
-->
<!DOCTYPE html>
<html>
<head>
<title> This is the 4th Practical </title>
</head>
<body>
<h2>A Nested List</h2>
<!-- A nested list in HTML is a list that contains another list
You can create nested ordered lists, nested unordered lists, or nested
ordered lists inside unordered lists. -->
<p>Lists can be nested (list inside list):</p>
<h4>Bevrages List</h4>
<ul> <li>Milk</li>
<li>Espresso</li>
<li>Coffee</li>
<li>Tea</li>
<ul>
<li>Black Tea</li>
<li>Green Tea</li>
</ul>
<li>Shake</li>
<ul>
<li>Mango shake</li>
<li>Oreo shake</li>
<li>Milk shake</li> </ul>
<li>Juice</li>
<ul> <li>Orange Juice</li>
<li>Pineapple Juice</li>
<li>Mango Juice</li> </ul>
</ul>
</body>
</html>