Table Tutor

<table border= "1">
 <tr>
  <td>cell1</td><td>cell2</td>
 </tr>
 <tr>
  <td>cell3</td><td>cell4</td>
 </tr>
</table>

cell1 cell2
cell3 cell4


 <table border="1">
 <tr>
  <th colspan=2>Girls</th><th colspan=2>Boys</th>
 </tr>
 <tr>
  <th>2y</th><th>4y</th><th>2y</th><th>4y</th>
 </tr>
 <tr>
  <td>Rose</td><td>Lisa</td><td>Peter</td><td>Michael</td>
 </tr>
 <tr>
  <td>Adele</td><td>Mary Ann</td><td>Bob</td><td>Lewis</td>
 </tr>
</table>

Girls Boys
2y 4y 2y 4y
Rose Lisa Peter Michael
Adele Mary Ann Bob Lewis


<table border="1">
 <tr>
  <th colspan="2" width="200">Girls
  </th>
  <th colspan="2" width="200">Boys
  </th>
 </tr>
 <tr>
  <th width="100">2y  </th>
  <th width="100">4y  </th>
  <th width="100">2y  </th>
  <th width="100">4y  </th>
 </tr>
 <tr>
  <td>Rose  </td>
  <td>Lisa  </td>
  <td>Peter  </td>
  <td>Michael  </td>
 </tr>
 <tr>
  <td>Adele  </td>
  <td>Mary Ann  </td>
  <td>Bob  </td>
  <td>Lewis  </td>
 </tr>
</table>

Girls Boys
2y 4y 2y 4y
Rose Lisa Peter Michael
Adele Mary Ann Bob Lewis


<table border="1">
 <tr>
  <th rowspan="4">Children  </th>
  <th colspan="2" width="200">Girls  </th>
  <th colspan="2" width="200">Boys  </th>
 </tr>
 <tr>
  <th width="100">2y  </th>
  <th width="100">4y  </th>
  <th width="100">2y  </th>
  <th width="100">4y  </th>
 </tr>
 <tr>
  <td>Rose  </td>
  <td>Lisa  </td>
  <td>Peter  </td>
  <td>Michael  </td>
 </tr>
 <tr>
  <td>Adele  </td>
  <td>Mary Ann  </td>
  <td>Bob  </td>
  <td>Lewis  </td>
 </tr>
</table>

 

Children Girls Boys
2y 4y 2y 4y
Rose Lisa Peter Michael
Adele Mary Ann Bob Lewis


<table border="1">
 <tr>
  <th colspan="2" bgcolor="lightblue">Girls
  </th>
  <th colspan="2" bgcolor="lightblue">Boys
  </th>
 </tr>
 <tr>
  <th width="100">2y  </th>
  <th width="100">4y  </th>
  <th width="100">2y  </th>
  <th width="100">4y  </th>
 </tr>
 <tr>
  <td>Rose  </td>
  <td>Lisa  </td>
  <td>Peter  </td>
  <td>Michael  </td>
 </tr>
 <tr>
  <td>Adele  </td>
  <td>Mary Ann  </td>
  <td>Bob  </td>
  <td>Lewis  </td>
 </tr>
</table>

 

Girls Boys
2y 4y 2y 4y
Rose Lisa Peter Michael
Adele Mary Ann Bob Lewis


<table cellspacing="10">
 <tr>
  <td width="160" bgcolor="lightblue">This is the sidebar, where I will list various important items.  The sidebar is lightblue. It will be as long as the text
  </td>
  <td width="450" valign="top">This is the main content, which is going to fill most of the screen
  </td>
 </tr>
</table>

 

This is the sidebar, where I will list various important items. The sidebar is lightblue. It will be as long as the text This is the main content, which is going to fill most of the screen


Here is some text
<table border="1">
 <tr>
  <td>cell1  </td>
  <td>cell2  </td>
 </tr>
 <tr>
  <td>cell3  </td>
  <td>cell4  </td>
 </tr>
</table>Followed by some more text

Here is some text

cell1 cell2
cell3 cell4
Followed by some more text