Solution:
<html>
<head>
<head><link rel="stylesheet" type="text/css" href="ab.css"></head>
<body>
<ul type = "disc">
<li>Non Flowering Plant</li>
<ul type = "circle">
<li>Fern</li>
<li>Spore</li>
</ul>
</ul>
<ul type = "disc">
<li>Flowering Plant</li>
<ul type = "square">
<li>Lilly</li>
<li>Rose</li>
<ol>
<li>Red Rose</li>
<li>Pink Rose</li>
</ol>
</ul>
</ul>
ab.css
body
{
background-image: url("1.jpg");
}
ol{color:red;}
ul{color:blue;}
0 Comments