Write the HTML program to print the following?
•Maths
•English
•Biology
•History
•Urdu
Answers
Answered by
2
Answer:
You've got me, mate:
<!Doctype html>
<html>
<head>
<title>Example of HTML ordered List</title>
</head>
<body>
<ol type= "I">
<li> Maths</li>
<li> English</li>
<li> Bio</li>
<li> History</li>
<li> Urdu</li>
</ol>
</body>
</html>
Similar questions