Design an HTML document with the heading MY SUBJECTS containing a nested lists as shown below: MY SUBJECTS a) English Language Literature b) Vernacular Language • Literature c) Science O · Physics Chemistry Biology d) Arts • History Geography e) Mathematics f) Computer Science
Answers
Answered by
4
Answer:
HTML document for MY SUBJECTS
Explanation:
<!DOCTYPE html>
<html>
<body>
<h2>A Nested List</h2>
<p>MY SUBJECTS:</p>
<ul>
<li>English Language Literature </li>
<li>
<ul>
<li>Vernacular Language</li>
<ul>
<li> Science </li>
<ul>
<li> Physics </li>
<li> Chemistry </li>
<li> Biology</li>
</ul>
</li>
<li>Arts</li>
<ul>
<li>History </li>
<li>Geography</li>
<ul>
<li>Mathematics</li>
<li>Computer science</li>
</ul>
</body>
</html>
Attachments:
Similar questions