Computer Science, asked by rakhantayenjam51095, 2 months ago

Write the HTML CODE to generate the following output THINGS.
1.LIVING THINGS
* AQUATIC
* TERRESTRIALS
I. DOMESTIC
C. CAT
D. DOG
II. WILD
E. LION
D. TIGER
*AMPHIBIANS
2.NON- LIVING THINGS
HILLS
RIVERS
LAKE

Answers

Answered by sanjaypal146
0

Find the attchment.

<!DOCTYPE html>

<html>

<body>

<ol type="1">

<li>living things

<ul>

<li>Aquatic</li>

<li>Terrestrials

<ol type="I">

<li>Domenstic

<ol type="A">

<li>Cat</li>

<li>Dog</li>

</ol>

</li>

<li>Wild

<ol type="A">

<li>Lion</li>

<li>Tiger</li>

</ol>

</li>

</ol>

</li>

<li>AMPHIBIANS</li>

</ul>

</li>

<li>non_living Things

<ul>

<li>Hills</li>

<li>River</li>

<li>Lake</li>

</ul>

</li>

</ol>

</body>

</html>

Attachments:
Similar questions