CLOSE

Help Us Help You

This website and it's tutorials are only made possible with your support. Support money goes towards keeping our servers online and paying staff members.

Table Head Tag

The <thead> tag defines the head content for a table.

<table>
    <thead>
        <tr>
            <th>Name</th>
            <th>Age</th>
        </tr>
    </thead>
    
    <tbody>
       <tr>
            <td>Dominick</td>
            <td>25</td>
        </tr>
        <tr>
            <td>Jason</td>
            <td>23</td>
        </tr> 
    </tbody>
    
    <tfoot>
        <tr>
            <td colspan="2">2 People Total.</td>
        </tr>
    </tfoot>
</table>

Copyright 2016 Step By Step HTML. All Rights reserved.