How do you add a caption to the table in this HTML snippet?
<table> <tr> <td>Data</td> </tr> </table>
Add <figcaption>Table</figcaption> inside <table>
<figcaption>Table</figcaption>
<table>
Add <legend>Table</legend> inside <table>
<legend>Table</legend>
Add <caption>Table</caption> inside <table>
<caption>Table</caption>
Add title="Table" to the <table> tag
title="Table"