9.2.1. Provide a title for each data table with the <caption> tag

Whenever a data table is included in an HTML page, it must have a concise and clear title. The title must be tagged with <caption> and must introduce the content of the table.

<table>
    <caption>Average monthly temperatures of the 3 largest French cities in 2012.</caption>
    […]
</table>