Tables

Data Table Example

Cups of Coffee
Consumed by Instructors
Instructor # of Cups Kind of Coffee
Rhodes 6 Regular
Andy 3 Regular
Mike 11 Regular
Dave 3 Decaf

 

Simple Data Table Example

<table align="center" border="1" summary="3 column table giving the name of each AIR Instructor, the number of cups of coffee they drink per day, and then the kind of coffee.">
<caption>
Cups of Coffee Consumed by Instructors
</caption>
<tr>
<th scope="col">Instructor</th>
<th scope="col"># of Cups</th>
<th scope="col">Kind of Coffee</th>
</tr>
<tr>
<th scope="row">Rhodes</th>
<td>6</td>
<td>Regular</td>
</tr>
<tr>
<th scope="row">Andy</th>
<td>3</td>
<td>Regular</td>
</tr>
<tr>
<th scope="row">Mike</th>
<td>11</td>
<td>Regular</td>
</tr>
<tr>
<th scope="row">Dave</th>
<td>3</td>
<td>Decaf</td>
</tr>
</table>

Complex Table example

Forms