tables in html structure code example

Example 1: tables in html

<table>
        <thead>    <!--Table Head-->
            <th>Year</th>   <!--Table Heading-->
            <th>Work</th>   <!--Table Heading-->
        </thead>
        <tbody>     <!--Table Body-->
            <tr>    <!--Table Row-->
                <td>2019-2020</td>    <!--Table Data for row1-->
                <td>self-taught Python Developer</td>    <!--Table Data for row1-->
            </tr>
            <tr>
                <td>2020-2021</td>
                <td>Learning Advanced Python</td>
            </tr>
        </tbody>
        <tfooter>
        </tfooter>
    </table>

Example 2: html tables

<table></table>
    <td></td> <!-- td is a table cell-->
    <tr></tr> <!-- tr is a table row-->
    <th></th> <!-- th is the table header -->
    <thead></thead><tbody></tbody><tfoot></tfoot> <!-- table semantic -->
    <tr rowspan="2"></tr><!-- Span a row -->
    <tr colspan="2"></tr><!-- Span a column -->

Tags:

Css Example