Create a Webpage in HTML to display ordered list of the teachers
who teach in a class and unordered list of subjects being taughts.
Answers
Answered by
14
<html>
<head>
<title>Ordered and Unordered list</title>
</head>
<body>
<ol>
<li>Name of teacher</li><br>
<li>Name of teacher</li><br>
<li>Name of teacher</li><br>
<li>Name of teacher</li><br>
<li>Name of teacher</li><br>
</ol>
<ul>
<li>Name of Subject></li><br>
<li>Name of Subject></li><br>
<li>Name of Subject></li><br>
<li>Name of Subject></li><br>
<li>Name of Subject></li><br>
</ul>
</body>
</html>
Answered by
0
Answer:
Create an ordered list of the name of subjects
you study in school.
Similar questions