5. Write an HTML code to create the following ordered list.
C. Apples
D. Oranges
E. Grapes
Answers
Answered by
6
Answer:
<HTML>
<HEAD><TITLE>CHOOSE YOUR OWN TITLE</TITLE></HEAD>
<BODY><OL TYPE="A" START=C><LI>Apples<LI>Oranges<LI>Grapes</OL>
</BODY></HTML>
Answered by
2
Answer:
Explanation:
<html>
<head><title>ordered list<|title><|head>
<body>
<ol type="a"start="3">
<li>apple
<li>orange
<li>grapes
<|ol>
<|body>
<|html>
Similar questions