I have a site made of table for its layout but the links can't be styled correctly
My table code for the navbar
<table id="table">
<tr class="navbar">
<td><a href="#">HOME</a></td>
<td><a href="#">MY PROFILE</a></td>
<td><a href="#">MY WORKS</a></td>
<td><a href="#">ABOUT SITE</a></td>
</tr>
</table>
My CSS code
a.navbar:link {
color:whitesmoke;
}
a.navbar:visited {
color:red;
}
a.navbar:hover {
color:red;
background-color: yellow;
}
a.navbar:active {
color:red;
}