Computer Science, asked by rounakv754, 6 months ago

Write an HTML code to create the following ordered List -

III.Apple

IV.Oranges

V.Grapes​

Answers

Answered by rajnandini0852
0

Answer:

I forgot I have to see in the book

Answered by ankitamahanta
1

Answer:

Please try to give the question in a proper way.. If you simply want to show the above question in a html code then you can use this format :)

Explanation:

<!DOCTYPE html>

<html>

<head>

<title>Creating web pages</title>

</head>

<body>

<ul>

<li>Apple</li>

<li>Oranges</li>

<li>Grapes</li>

</ul>

</body>

</html>

Similar questions