SyntaxStudy
Sign Up
Home HTML Reference <thead> / <tbody> / <tfoot>

<thead> / <tbody> / <tfoot>

tag

Semantic groups for table rows: header, body, and footer sections.

Syntax

<thead> <tr><th>...</th></tr> </thead>

Example

html
<table>
    <thead>
        <tr><th>Product</th><th>Price</th></tr>
    </thead>
    <tbody>
        <tr><td>Apple</td><td>$0.99</td></tr>
        <tr><td>Banana</td><td>$0.49</td></tr>
    </tbody>
    <tfoot>
        <tr><td>Total</td><td>$1.48</td></tr>
    </tfoot>
</table>