Page is a not externally linkable
rocknbil - 4:45 pm on Feb 6, 2012 (gmt 0)
Note BirdBrain's advice in that thread. It's a really bad idea to make an element that is not a natural navigation element a link. It fails without Javascript.
Use anchors. The highlighting part is easy.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Untitled</title>
<style type="text/css">
body { font family:arial, helvetica, sans-serif; text-align: center; }
table { width: 50%; margin: auto; }
.grayrow:hover { background-color:#c0c0c0; }
.yellowrow:hover { background-color: #ffff00; }
</style>
</head>
<body>
<table>
<tr class="grayrow">
<td><a href="google.com">Google</a></td>
<td><a href="example.com">Example</a></td>
</tr>
<tr class="yellowrow">
<td><a href="google.com">Google</a></td>
<td><a href="example.com">Example</a></td>
</tr>
</table>
</body>
</html>