Example - Table #1

Here's a very simple table:

Table #1
Billy Joe Jim Bob
65 95 99 87
<table border>
  <caption> Table #1 </caption>
  <tr>
  <th> Billy </th>
  <th> Joe </th>
  <th> Jim </th>
  <th> Bob </th>
  </tr>

  <tr>
    <td> 65 </td>
    <td> 95 </td>
    <td> 99 </td>
    <td> 87 </td>
  </tr>

</table>


Notes:

[Back] [Forward]