-- og den til alternerende baggrunde:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>TITLE</title>
<style type="text/css">
body, html {
height: 100%;
margin: 0;
padding: 0;
}
table{background-color:#fcd;cursor:pointer;}
.even{background-color:#fde;}
</style>
</head>
<body>
<table style="border-collapse:collapse">
<tr onmouseover="this.style.background='#ccc'"
onmouseout="this.style.backgroundColor=''"
onclick="location.href='
http://www.google.dk'"> <td>Blabla 1</td>
<td>Blabla 2</td>
<td>Blabla 3</td>
</tr>
<tr onmouseover="this.style.background='#ccc'"
onmouseout="this.style.backgroundColor=''"
onclick="location.href='
http://www.google.dk'" class="even">
<td>Blabla 1</td>
<td>Blabla 2</td>
<td>Blabla 3</td>
</tr>
<tr onmouseover="this.style.background='#ccc'"
onmouseout="this.style.backgroundColor=''"
onclick="location.href='
http://www.google.dk'"> <td>Blabla 1</td>
<td>Blabla 2</td>
<td>Blabla 3</td>
</tr>
<tr onmouseover="this.style.background='#ccc'"
onmouseout="this.style.backgroundColor=''"
onclick="location.href='
http://www.google.dk'" class="even">
<td>Blabla 1</td>
<td>Blabla 2</td>
<td>Blabla 3</td>
</tr>
</table>
</body>
</html>