Tag Description
<tbody> The HTML <tbody> tag is used to group the body content in an HTML table. The <tbody> tag is used in conjunction with the <thead> tag and the <tfoot> tag in determining each part of the table(header, footer, body).

Example:

HTML Code Display

<table width="100%">
    <thead class="portlet-table-header">
        <tr>
            <th>Month</th>
            <th>Savings</th>
        </tr>
    </thead>
    <tfoot class="portlet-table-footer">
        <tr>
            <td>Sum</td>
            <td class="afsc-table-data-currency">
                $600
            </td>
        </tr>
    </tfoot>
    <tbody class="portlet-table-body">
        <tr>
            <td>January</td>
            <td class="afsc-table-data-currency">
                $100
            </td>
        </tr>
        <tr class="portlet-table-alternate">
            <td>February</td>
            <td class="afsc-table-data-currency">
                $200 
            </td>
        </tr>
        <tr>
            <td>March</td>
            <td class="afsc-table-data-currency">
                $100    
            </td>
        </tr>
        <tr class="portlet-table-alternate">
            <td>April</td>
            <td class="afsc-table-data-currency">
                $200    
            </td>
        </tr>        
    </tbody>
</table>
                    
Month Savings
Sum $600
January $100
February $200
March $100
March $200