Pls answer it fast...
Attachments:
Answers
Answered by
1
<!DOC TYPEhtml>
<html>
<head>
<style>
.left {
background-color: yellow;
position: centre;
left: 0px;
width: 500px;
border: 3px solid black;
padding: 10px;
}
h1 {text-align: center;}
ol.c {
list-style-type: upper-roman;
}
ul.a {
list-style-type: circle;
}
ol.d {
list-style-type: lower-alpha;
}
</style>
</head>
<body >
<div class="left">
<p class="solid"><h2>List</h2></p>
<hr style="height:2px;border-width:0px;color:black;background-color:black">
<h1>Subject</h1>
<ol class="c">
<li>English</li>
<ul class="a">
<li>Lit</li>
<li>Gram</li>
</ul>
<li>Hindi</li>
<ol>
<li>Lit</li>
<li>Gram</li>
</ol>
<li>Science</li>
<ol class="d">
<li>Phy</li>
<li>Chem</li>
<li>Bio</li>
</ol>
</ol>
</div>
</body>
</html>
try this////
Similar questions