|
You have lots of duff html for a start:
<body>
<thead>
<table width="125%" border="0" cellspacing="0" cellpadding="0">
Should be:
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
There are also dozens of other errors, I suggest validating your code and correcting all the errors before going any further.
|