Schedule Assignment


Create a table with your daily school/work schedule for the semester. Since it's highly likely that you will have classes on both MWF and TR and the times don't coincide you will need to have your columns of unequal height. I suggest that the easiest way to do that is to use short time periods and a rowspan to make things work out.

You should give it interesting fonts and colors

The table below shows what I am talking about.

  monday tuesday wednesday thursday friday
8:00          
8:30    
9:00      
9:30

Here is the code for that table (or you can do it the easy way in Dreamweaver):
<table width="100%" cellspacing="2" cellpadding="2" border="2"> <tr><!-- Row 1 --> <td>&nbsp;</td> <td>monday</td> <td>tuesday</td> <td>wednesday</td> <td>thursday</td> <td>friday</td> </tr> <tr><!-- Row 2 --> <td>8:00</td> <td ROWSPAN=2>&nbsp;</td> <td>&nbsp;</td> <td ROWSPAN=2>&nbsp;</td> <td>&nbsp;</td> <td ROWSPAN=2>&nbsp;</td> </tr> <tr><!-- Row 3 --> <td>8:30</td> <td ROWSPAN=3>&nbsp;</td> <td ROWSPAN=3>&nbsp;</td> </tr> <tr><!-- Row 4 --> <td>9:00</td> <td ROWSPAN=2>&nbsp;</td> <td ROWSPAN=2>&nbsp;</td> <td ROWSPAN=2>&nbsp;</td> </tr> <tr><!-- Row 5 --> <td>9:30</td> </tr> </table>