<html>
<head><title>Table demonstration</title></head>
<body>
<h1>Start of demonstration</h1>
<p>This demonstrates a table caption and headings.</p>
<br />
<table>
<caption><h2>Products</h2></caption>
<thead><th>Price</th><th>Item</th></thead> 
<tbody>
<tr><td>$735.00</td><td>New Perkins Brailler</td></tr>
<tr><td>$335.00</td><td>Used Perkins Brailler</td></tr>
</tbody>
</table>
<br />
<p>The second table.</p>
<h2>The second table</h2>
<table>
<caption>Products</caption>
<thead><th>Price</th><th>Item</th></thead> 
<tbody>
<tr><td>$4,500.00</td><td>Juliet Pro 60</td></tr>
<tr><td>$4,000.00</td><td>Juliet</td></tr>
</tbody>
</table>
<br />
<p>A third table.</p>
<h2>The third table</h2>
<table>
<tr><th>Price</th><th>Item</th></tr>
<tbody>
<tr><td>$180,000.00</td><td>New house</td></tr>
<tr><td>$4,000.00</td><td>Run down house</td></tr>
</tbody>
</table>
<p>End of demonstration.</p>
</body></html>