Computer Science, asked by ravinderkaur2031986, 1 month ago

writer a program to print an
ordered list of food items ( at
least three items should be there?​

Answers

Answered by ananyamilly
2

Answer:

<html>

<title>

<head>

list

</head>

</title>

<body>

<ul>

<li>Burger</li>

<li>Sandwich</li>

<li>Salad</li>

</ul>

<ol>

<li>Burger</li>

<li>Sandwich</li>

<li>Salad</li>

</ol>

ul=unordered list

ol=ordered list

Answered by atrs7391
2

<html>

<title>Brainly.in Answer</title>

<h1>Ordered List</h1>

<body>

<ol>

<li> Egg </li>

<li> Meat </li>

<li> Vegetables </li>

</ol>

</body>

</html>

Similar questions