please send me please answer fast
Attachments:
Answers
Answered by
4
Question:-
Write a html code to create following output.
Solution:-
Here is your html code given,
<!DOCTYPE html>
<html>
<head>
<title>Nested List Example</title>
</head>
<body bgcolor="yellow">
<h1><font color="red">Nested List</font></h1>
<ol>
<li>Science
<ul>
<li>PCM
<li>PCB
</ul>
<li>Commerce
<ul>
<li>A/C
<li>Eco
<li>Bst
</ul>
</ol>
</body>
</html>
Similar questions