pls do the html coding for me urgently (20 points)
Answers
Answer:
The coding for the given web page is
<html>
<head> <title> My Teachers </title>
<style>
div {
margin-top:50px;
margin-left: 50px;
border:10px solid black;
}
</style>
</head>
<body bgcolor ="pink">
<div>
<ul type ="square">
<h2>
<li><font color ="red"> First teacher <b>(Enter your teacher name)</b></font> </li>
<li><font color ="orange"> Second teacher <b>(Enter your teacher name)</b></font> </li>
<li><font color ="blue"> Third teacher <b>(Enter your teacher name)</b></font> </li>
<li><font color ="cyan"> Fourth teacher <b>(Enter your teacher name)</b></font> </li>
<li><font color ="green"> Fifth teacher <b>(Enter your teacher name)</b></font> </li>
<li><font color ="yellow"> Sixth teacher <b>(Enter your teacher name)</b></font> </li>
</h2>
</ul>
<h1> Border is not compulsory </h2>
</div>
</body>
</html>