Tag Description
<th> The HTML <th> tag is used for specifying a header cell (or table header) within a table.

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>Total</td>
            <td class="afsc-table-data-currency">
                $1,000
            </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">
                $300
            </td>
        </tr>
        <tr class="portlet-table-alternate">
            <td>April</td>
            <td class="afsc-table-data-currency">
                $400
            </td>
        </tr>        
    </tbody>
</table>
                
Month Savings
Total $1,000
January $100
February $200
March $300
April $400