Linklerin Renklerini Değiştirme Örnek
<!DOCTYPE html>
<html>
<head>
  <style>
    a:link {
      color: green;
      background-color: transparent;
      text-decoration: none
    }
    
    a:visited {
      color: brown;
      background-color: transparent;
      text-decoration: none
    }
    
    a:hover {
      color: red;
      background-color: transparent;
      text-decoration: underline
    }
    
    a:active {
      color: orange;
      background-color: transparent;
      text-decoration: underline
    }
  </style>
</head>
<body>
  <p>Linklerin varsayılan renklerini değiştirebilirsiniz.</p>
  <a href="http://htmlvecssegitimi.blogspot.com/2016/01/html-link-rengi-degistirme-ornek.html" target="_blank">HTML Link Rengi Değiştirme Örneği</a>
</body>
</html>
    
    
Yorumlar
Yorum Gönder