Arrrrggghhh - was my first reaction I'm afraid.
More constructively, I have no issues with the multi-coloured links (if thats what you want to do to stand out in the already massively overdone area you're delving into) but, as stated above... not on black!
In addition, I had a quick look at your page code and there are some
serious flaws with your page construction. It's a miracle it even works!
Check the order of these key elements... note where each one starts and finishes.
(where you see </something>, its finishing an element, like body or table.
Code:
<!DOCTYPE......>
<html>
<head>
<title>TITLE</title>
meta description, keywords, blah de blah
<style type="text/css">
.stuff{
border: 1px solid #000;
}
</style>
</head>
<body>
This is where the viewable stuff starts
<table><!--start of table-->
<tr><!--start of a row-->
<td><!--start of a cell-->
stuff in the cell
</td><!--end of cell-->
<td><!--start of another cell-->
stuff in the cell next to the first one
</td><!--end of second cell-->
</tr><!--end of row-->
</table><!--end of table-->
</body>
</html>
You may want to try to learn css, as building a page with tables now is very dated and not considered best practice. Reason? tables are not very flexible when trying to style your page.