Computer Science, asked by Taniakhundrakpam, 3 months ago

2
MENT
all write an
a
a
an HTML code for creating
webpage of your class with
an ordered list
of all the name of the
trachers and the subjects
an unordered list
67
the name of 10
students,
.an ordered list of all the name of the teachers and the subjects .​

Answers

Answered by prakharpandey656
1

<!DOCTYPE html>

<html>

<head>

<title> My class </title>

</head>

<body>

<h2>Teachers </h2>

<ol>

<li> Mrs. Hermoine </li>

<li>Mr. Harry</li>

<li> Mr. Ronald</li>

<li>Mrs. Genny </li>

<li> Prof. Snape</li>

</ol><br>

<h2>Subjects</h2>

<ol>

<li>Maths</li>

<li>Science</li>

<li>Hindi</li>

<li>English</li>

<li>S.S.T</li>

</ol>

<h2> Students</h2>

<ul>

<li>a</li>

<li>ab</li>

<li>ac</li>

<li>ad</li>

<li>ae</li>

<li>af</li>

<li>ag</li>

<li>ah</li>

<li>ai</li>

<li>aj</li>

</ul>

</body>

</html>

Hope you will find this code helpful

Mark as Brainliest (if it helped you)

Similar questions