body {
  background-color: white;
  color: black;
  font-family: Verdana;
}
/* unvisited link */
a:link {
  color: yellow;
}
a:link {
  text-decoration: none;
}

/* visited link */
a:visited {
  color: yellow;
}
a:visited {
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: rgb(150,150,255);
}

a:hover {
  text-decoration: none;
}
a:active {
  color:red;
}
a:active {
  text-decoration: none;
}