Link Colors

Link Colors

  • يتم عرض رابط HTML بلون مختلف اعتمادًا على ما إذا كان قد تمت زيارته أو لم تتم زيارته أو نشطًا.
مثال :
 <!-- Example -->
<a href='https://www.examble.com/'>Visit examble.com!</a> 
 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;
}