tables with html code example
Example 1: table html
<table>
<thead>
<tr>
<th>header1</th>
<th>header2</th>
<th>header3</th>
</tr>
</thead>
<tbody>
<tr>
<td>text1.1</td>
<td>text1.2</td>
<td>text1.3</td>
</tr>
<tr>
<td>text2.1</td>
<td>text2.2</td>
<td>text2.3</td>
</tr>
<tr>
<td>text3.1</td>
<td>text3.2</td>
<td>text3.3</td>
</tr>
<tr>
</tr>
</tbody>
</table>
Example 2: tables in html
<table>
<thead>
<th>Year</th>
<th>Work</th>
</thead>
<tbody>
<tr>
<td>2019-2020</td>
<td>self-taught Python Developer</td>
</tr>
<tr>
<td>2020-2021</td>
<td>Learning Advanced Python</td>
</tr>
</tbody>
<tfooter>
</tfooter>
</table>
Example 3: html tables
<table></table>
<td></td>
<tr></tr>
<th></th>
<thead></thead><tbody></tbody><tfoot></tfoot>
<tr rowspan="2"></tr>
<tr colspan="2"></tr>