Difference between revisions of "M365/test1"

From wiki
Jump to navigation Jump to search
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>

Revision as of 10:46, 25 May 2023

Communities

Communautés

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>