body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
table {
  background-color:blue;
  border:1;
  border-collapse:collapse;
  border-color:yellow
}
tr:nth-of-type(odd) {
  background-color:blue
}
tr:nth-of-type(even) {
  background-color:red
}
table {
  position:fixed; 
  left:0px;
  bottom:0px;
  top:0px;
  right:0px;
}
a:link {
  color: blue;
}
a:link {
  text-decoration: none;
}
a:visited {
  color: blue;
}
a:visited {
  text-decoration: none;
}
a:hover {
  color: yellow;
}
a:hover {
  text-decoration: none;
}
a:active {
  color:red;
}
a:active {
  text-decoration: none;
}