Rows
<table>
<tr>
<th></th>
<th scope="col">Column A</th>
</tr>
<tr>
<th scope="row">Row 1</th>
<td>Cell A1</td>
</tr>
</table>
Table rows are created using the <tr>...</tr>
element. Inside each <tr> are individual cells, which represent the columns of the table. These cells are created using <td> tags.
- Previous
- Next