Tag Description
<tr> The HTML <tr> tag is used for specifying a table row within a table. A table row contains one or more <td> and/or <th> tags which determine individual cells.

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