xxxxxxxxxx
<html>
<body>
<h1>Use Caption Element to introduce the table using a paragraph</h1>
<table border="1">
<caption>
<p>Table 1.</p>
<p>This table shows the rows and columns of a table.</p>
</caption>
<tr>
<td>Row 1, Column 1</td>
<td>Row 1, Column 2</td>
</tr>
<tr>
<td>Row 2, Column 1</td>
<td>Row 2, Column 2</td>
</tr>
</table>
</body>
</html>