Html Table Code

Html Table Structure

<table>

<caption>Demo Table</caption>

<thead>

<tr>

<th>Column1</th>

<th colspan="2">Column2</th>

</tr>

</thead>

<tbody>

<tr>

<td>Data1</td>

<td>Data2</td>

<td>Data2</td>

</tr>

<tr>

<td>Data1</td>

<td>Data2</td>

<td>Data2</td>

</tr>

</tbody>

<tfoot>

<tr>

<td>&nbsp;</td>

<td>Data</td>

<td>Data</td>

</tr>

</tfoot>

</table>

Comments