I'm looking for some help getting an html table I created to be at the top of a page. It looks alright to me, but then when I post it to my blog it has like 50 blank lines and puts it at the bottom of the page. I want it right at the top.
I'm not the best at html, especially tables... I just try and copy excisting table examples and add my own information. If someone can help it would be greatly appreciated. Heres the code:
<table cellspacing="1" cellpadding="2" border="1">
<tbody></tbody></table><table border="6">
<tbody><tr>
<td><b><center>Player</center></b></td>
<td><b><center>G</center></b></td>
<td><b><center>PA</center></b></td>
<td><b><center>AB</center></b></td>
<td><b><center>R</center></b></td>
<td><b><center>H</center></b></td>
<td><b><center>HR</center></b></td>
<td><b><center>RBI</center></b></td>
<td><b><center>BB</center></b></td>
<td><b><center>SO</center></b></td>
<td><b><center>SB</center></b></td>
<td><b><center>BA</center></b></td>
<td><b><center>OBP</center></b></td>
<td><b><center>SLG</center></b></td>
<td><b><center>OPS</center></b></td><b>
</b></tr>
<tr>
<td align="middle">Corey Hart</td>
<td>60</td>
<td>221</td>
<td>194</td>
<td>34</td>
<td>61</td>
<td>10</td>
<td>31</td>
<td>21</td>
<td>35</td>
<td>15</td>
<td>.314</td>
<td>.391</td>
<td>.531</td>
<td>.922</td>
</tr>
<tr>
<td align="middle">Carlos Lee</td>
<td>76</td>
<td>331</td>
<td>292</td>
<td>41</td>
<td>85</td>
<td>13</td>
<td>60</td>
<td>24</td>
<td>30</td>
<td>4</td>
<td>.291</td>
<td>.341</td>
<td>.503</td>
<td>.844</td>
</tr>
<tr>
<td align="middle">Corey Hart Projected</td>
<td></td>
<td></td>
<td>294</td>
<td>51</td>
<td>91</td>
<td>15</td>
<td>46</td>
<td>31</td>
<td>52</td>
<td>22</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
</tr></tbody></table>
