Page

Nested list in unordered pattern

<!DOCTYPE html>
<html>
<body>

<h4>A nested List:</h4>
<ul>
  <li>MCA</li>
  <li>MBA
    <ul>
    <li>BCA</li>
    <li>BBA</li>
    </ul>
  </li>
  <li>PGDCA</li>
</ul>

</body>
</html>

No comments:

Post a Comment