9.
Write an HTML code to create the following ordered list.
C. Apples
D. Oranges
E. Grapes
Answers
Answered by
2
Answer:
<html>
<head>
<title>ordered list</title>
<body bgcolor="purple" text="gold" order="">
<h1><u>ORDERED LIST</u></h1>
<h3>
Ingredients for making of coffee
<ol type="a">
<li>Apples</li>
<li>Oranges</li>
<li>Grapes</li>
<ol>
</body>
</h3>
</html>
Similar questions