4. Write the HTML an program to produce below Output:
Ordered List Program
I like these fruits
1. Mangoes
2. Grapes
3. Sapota
4. Apples
Answers
Answered by
3
Answer:
<!DOCTYPE html>
<html>
<head>
<title>
list
</title>
</head>
<body>
<h1>Ordered List Program</h1>
<p>I like these fruits</p>
<ol type="1">
<li>Mangoes</li>
<li>Grapes</li>
<li>Sapota</li>
<li>Apples</li>
</ol>
</body>
</html>
HOPE IT HELPS
Similar questions
Math,
2 months ago
Computer Science,
2 months ago
Math,
5 months ago
Physics,
5 months ago
Physics,
10 months ago
Computer Science,
10 months ago