table column tag code example
Example 1: table html tages
<table>
<tr> <!-- This is the first row -->
<th>This is the heading</th>
<th>Next heading to the right</th>
</tr>
<tr> <!-- This is the second row -->
<td>This is where the table data goes</td>
<td>This is the second columns data</td>
</tr>
</table>
Example 2: col tag in html
<!-- use the scope tag -->
<table>
<tr scope="col">Column</tr>
<tr scope="row">Row</tr>
</table>