Forum Moderators: open
However, it not clear where to add which code.
<!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>