the tag that start a table cell is
Answers
Answered by
6
Answer:
The <tr> element defines a table row, the <th> element defines a table header, and the <td> element defines a table cell. A more complex HTML table may also include <caption>, <col>, <colgroup>, <thead>, <tfoot>, and <tbody> elements. Note: Tables should not be used for page layout!
Answered by
11
<html>
<head>
<title>mark me as brainliest</title>
</head>
<body>
<table border="1">
<tr>
<td> Table cell </td><td> Table cell </td>
</tr>
<tr>
<td> Table cell </td><td> Table cell </td>
</tr>
</table>
</body>
</html>
Similar questions