Remove all that <font color> and add in your css.
.color_white {
color: #fff;
}
And then in your HTML page.
<div class="color_white">YOUR TABLE GOES HERE</div>
You can also just add in your css..
html {
color: #fff;
}
To make the font color white in all your website pages.