write an HTML code to define a table with three rows and three columns
Answers
Answered by
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
4
Answer:
I hope you got your answer
Attachments:
Similar questions