¿Cómo añadirías un título a la tabla en este fragmento HTML?
<table> <tr> <td>Dato</td> </tr> </table>
Añadiendo <figcaption>Table</figcaption> dentro de <table>
<figcaption>Table</figcaption>
<table>
Añadiendo <legend>Table</legend> dentro de <table>
<legend>Table</legend>
Añadiendo <caption>Table</caption> dentro de <table>
<caption>Table</caption>
Añadiendo title="Table" a la etiqueta <table>
title="Table"