Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

HTML Links - Different Colors

<style>
a:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}
</style>
 
PREVIOUS NEXT
Tagged: #HTML #Links #Different #Colors
ADD COMMENT
Topic
Name
8+6 =