0 / 60 seg.

¿Cómo se estructura correctamente una tabla con encabezado, cuerpo y pie?

<table>
    <thead>
        <tr>
            <th>Producto</th><th>Precio</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Manzana</td><td>1€</td>
        </tr>
        <tr>
            <td>Pera</td><td>1.5€</td>
        </tr>
    </tbody>
    <tfoot>
        <tr>
            <th>Total productos</th><td>2</td>
        </tr>
    </tfoot>
</table>