In: Computer Science
Create an HTML page that contains a three-level nesting list (you may choose the type of the list you want to use). One item on each level. Use the three attached images as the content of each of the three list items.
use any random image name located in the default directory
<!DOCTYPE HTML>
<html>
<body>
<ul>
<li>
<img src="image1.jpg" />
<ul>
<li><img src="image2.jpg" />
<ul>
<li><img src="image3.jpg" /></li>
</ul>
</li>
</ul>
</li>
</ul>
</body>
</html>