answer this question l will make you brainliest please
Answers
There you go!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
background-color: purple;
}
h1{
color:cyan;
margin: 10px 40px;
}
ul, a{
color: orange;
}
</style>
</head>
<body>
<h1>Hariyana Vidya Mandir</h1>
<a>1. Morning Shift </a>
<ul>
<li>VIII A</li>
<li>VIII B</li>
<li>VIII C</li>
</ul>
<a>2. Day Shift</a>
<ul>
<li>VIII-D</li>
<li>VIII-E</li>
<li>VIII-F</li>
</ul>
</body>
</html>
Answer:
<html>
<body style="background-color:purple;">
<h1 style = "color:blue">Haryana Vidya Mandir</h1>
<p>1. Morning shift </p>
<ol>
<li style = "color:orange">VIII A</li>
<li style = "color:orange">VIII B</li>
<li style = "color:orange">VIII C</li>
</ol>
<p>2. Day shift </p>
<ol>
<li style = "color:orange">VIII D</li>
<li style = "color:orange">VIII E</li>
<li style = "color:orange">VIII F</li>
</ol>
</html>
</body>
Explanation: