tabellenzeilen-klickbar.html
<title>Tabellenzeilen klickbar
</title>
table.clickable {width:400px}
table.clickable tr:hover { cursor:pointer; cursor:hand; background-color:#efefef}
</style>
</head>
<table border="1" class="clickable">
<tr onclick="window.location.href='1.html'">
<tr onclick="window.location.href='2.html'">
</table>
</body>
</html>