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 Foot Tag

The <tfoot> tag defines the footer content of 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.