How do i fix my table? i want to add a cell without text. here is my html, take a look at the <th> tag with width at 25% <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>Apply 4</title> </head> <body> <table align="center" border="8" cols="6" cellspacing ="15" width="100%" bgcolor="#FFCC99"> <tr> <th colspan="6">AFTER SCHOOL TUTORING <br />Responsibility Chart</th> </tr> <tr> <th width="25%"></th> <th width="15%">Rick <br />Coles</th> <th width="15%">Lori <br />Feldman</th> <th width="15%">Musa <br />Naroseh</th> <th width="15%">Laquisha <br />Petersen</th> <th width="15%">Tyler Walters</th> </tr> <tr> <td>Algebra</td> <th>X</th> <th></th> <th></th> <th></th> <th></th> </tr> <tr> <td>Calculus</td> <th><br /></th> <th>X</th> <th>X</th> <th><br /></th> <th><br /></th> </tr> <tr> <td>Biology I</td> <th><br /></th> <th><br /></th> <th>X</th> <th><br /></th> <th></th> </tr> <tr> <td>Biology II</td> <th><br /></th> <th><br /></th> <th><br /></th> <th>X</th> <th><br /></th> </tr> <tr> <td>American History</td> <th><br /></th> <th><br /></th> <th><br /></th> <th><br /></th> </tr> <tr> <td>World History</td> <th>X</th> <th></th> <th><br /></th> <th><br /></th> <th>X</th> </tr> </table> </body> </html>