Computer Science, asked by harishbalamurugan254, 5 months ago

Write a HTML Program to create a table with minimum 3 rows and 3 columns. [10 Marks]

Heading of the table should be “Cricket Passion”. First column should have the names

of your favourite cricket players. Second column should have a name of the team they

belong to. In the third column, you can give any details about the maximum runs in

ODIs, No. of tests/matches or IPL played etc.,

Answers

Answered by bongconnectionwithus
3

Answer:

<table>

<th> (this is table heading under it the heading will come)

<tr> (table row) ........... </tr>

<tr> ...... </tr>

<tr> ...... </tr>

<cols> .... </cols> *3 times for 3 columns

<td> (table defination) all information of table under this tag.. </td>

</table>

</body>

</html>

Similar questions