I can't get the top table to butt against the very top of the browser. Also can't get it up against the left also. Can someone point out what's up?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <HTML> <HEAD> <TITLE>Basic Layout Template</TITLE> <HEAD> <BODY> <table align="center" cellpadding="0" cellspacing="0" width="720" bgcolor="#808080"> <tr> <td width="720" height=100" valign="top"> </td> </tr> </table> <table align="center" border="2"> <tr> <td align="center" colspan="3">Topper</td> </tr> <tr> <td align="center" rowspan="2">Left</td> <td align="center">Mid1</td> <td rowspan="2">Right</td> </tr> <tr> <td>Mid2</td> </tr> <tr> <td align="center" colspan="3">Bottom</td> </tr> </table> </BODY> </HTML>