Computer Science, asked by roentbihar2007, 1 month ago

write a program in HTML of unordered list of vegetables any (5) vegetables buy from market​

Answers

Answered by KesavanCSE
0

Answer:

<html>

<style>

table, th/ td {

border:1px solid black;

}

</style>

<body>

<h2>GROCERY</h2> <table style="width:100%">

<tr>

<th>FRUITS</th>

<th>SNACKS</th>

<th>VEGTABLE</th>

</tr>

<tr>

<td>APPLE</td>

<td>CHIPS</td>

<td>POTATO</td>

</tr>

<tr>

<td>ORANGE</td>

<td>CHOCOLATE</td> <td>CABBAGE</td>

</tr>

</table>

</body>

</html>

Attachments:
Similar questions