Computer Science, asked by s15167csethy14439, 4 months ago

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 nav829
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