Some Basics...

Add a table name
- Define the intent of the table

Use the <caption> element

Must be first element after <table>

In HTML5 , you can use additional markup inside <caption>, such as headings <hx> or <p>.

Travel Expense Report - San Jose (no caption)

Dates Meals Hotels Transport
25-Aug-97 37.74 112.00 45.00
26-Aug-97 27.28 112.00 45.00
Subtotal 65.02 224.00 90.00

Travel Expense Report - San Jose

Dates Meals Hotels Transport
25-Aug-97 37.74 112.00 45.00
26-Aug-97 27.28 112.00 45.00
Subtotal 65.02 224.00 90.00

<table border="1" width="60%">
<caption>

    <h3>Travel Expense Report - San Jose</h3>

</caption>
<tbody>
<tr>
<td>Dates</td>

...


Use Table Head cells

Explain the table

When possible - Simplify