What is the semantic way to add an identifying title to a table?
<table><label>Heading</label>...</table>
<table><title>Heading</title>...</table>
<table><legend>Heading</legend>...</table>
<table><caption>Heading</caption>...</table> The <caption> HTML element specifies the caption (or title) of a table. Source
<table><caption>Heading</caption>...</table>
The <caption> HTML element specifies the caption (or title) of a table.