write the html code to create the following nested list :-
Attachments:
Answers
Answered by
0
Explanation:
<! DOCTYPE html>
<html>
<head>
<title>Example of HTML ordered list</title>
</head>
<body>
<ol type= "1">
<li> Continents </li>
<li> Asia</li>
<li> Africa </li>
<li> North America</li>
<li> South America </li>
<li> Europe </li>
<li>Antartica </li>
<li> Australia and Oceania</li>
</ol>
</body>
<html>
You just have to type the names of oceans as well
Similar questions