Computer Science, asked by hardiknarain4426, 1 year ago

Write the html code for following table .
#order list
1 APPLE
2 ORANGE
3 BANANA
4 GRAPES
# Un Order List
. Cow
. elephant
.Lion
.goat

Answers

Answered by VISHALKUMARV22
43

Answer:

<!DOCTYPE html>

<html>

<head>

<title>Mark me as Brainliest</title>

</head>

<body>

Order List

<ol>

 <li>Orange</li>

 <li>Apple</li>

 <li>Banana</li>

 <li>Grapes</li>

</ol>

Unorder List

<ul>

 <li>Cow</li>

 <li>Elephant</li>

 <li>Lion</li>

 <li>Goat</li>

</ul>

</body>

</html>

Answered by KajalBarad
4

HTML program for the table given above:

<HTML>

<HEAD>

<TITLE>

</TITLE>

<BODY>

<UL>

<LI>APPLE

<LI>ORANGE

<LI>BANANA

<LI>GRAPES

</OL>

<UL>

<LI>Cow

<LI>elephant

<LI>Lion

<LI>goat

</UL>

</BODY>

</HEAD>

</HTML>

Similar questions