Tuesday, August 13, 2013


<table>
 <caption>2009 Employee Sales by Department</caption>
 <thead>
  <tr>
   <td></td>
   <th scope="col">food</th>
   <th scope="col">auto</th>
   <th scope="col">household</th>
   <th scope="col">furniture</th>
   <th scope="col">kitchen</th>
   <th scope="col">bath</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <th scope="row">Mary</th>
   <td>190</td>
   <td>160</td>
   <td>40</td>
   <td>120</td>
   <td>30</td>
   <td>70</td>
  </tr>
  <tr>
   <th scope="row">Tom</th>
   <td>3</td>
   <td>40</td>
   <td>30</td>
   <td>45</td>
   <td>35</td>
   <td>49</td>
  </tr>
  ...repetitive rows removed for brevity.  
 </tbody>
</table>

No comments:

Post a Comment