Computer Science, asked by tanvipawar43, 5 months ago

write an HTML code to define a table with three rows and three columns​

Answers

Answered by divyanshisingh66
2

Answer:

Explanation:

<html>

<head>

<title>

</title>

</head>

<body>

<!-to start a table -->

<table>

<tr>

<th>row a1</th>

<th>row a2</th>

<th>row a3</th>

</tr>

<tr>

<th>row b1</th>

<th>row b2</th>

<th>row b3</th>

</tr>

<tr>

<th>row c1</th>

<th>row c2</th>

<th>row c3</th>

</tr>

</table>

</body>

</html>

Answered by XxDREAMKINGxX
4

Answer:

I hope you got your answer

Attachments:
Similar questions