Computer Science, asked by inboxtosuresh, 11 months ago

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 Lakhberg
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 dhimanreena66
0

Answer:

Create an ordered list of the name of subjects

you study in school.

Similar questions