Changes

374 bytes added ,  10:46, 25 May 2023
no edit summary
Line 18: Line 18:     
===Testing Links To Be Opened in a New Window===
 
===Testing Links To Be Opened in a New Window===
 +
<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>
 
<a href="https://www.w3schools.com/" target="_blank">Visit W3Schools!</a>
 
<a href="https://www.w3schools.com/" target="_blank">Visit W3Schools!</a>