0 / 60 seg.

¿Cuál es el problema en este fragmento de código?

<table>
    <thead>
        <tr>
            <th>Materia</th>
            <th>Calificación</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Matemáticas</td>
        </tr>
    </tbody>
    <tfoot>
        <tr>
            <td>Promedio</td>
            <td>85</td>
        </tr>
    </tfoot>
</table>