HTML Link - Link Renkleri Değiştirme

muho61

Paylaşım Ekibi
Üyelik Tarihi
23 Aralık 2020
Mesajlar
262
Beğeniler
2
Ticaret: 0 / 0 / 0
Kod:
<html>
<head>
<style>
a:link {
    color: green;   
    text-decoration: none;
}
a:visited {
    color: yellow;   
    text-decoration: none;
}
a:hover {
    color: red;
    background-color: yellow;
    text-decoration: underline;
}
a:active {
    color: black;   
}
</style>
</head>
<body>
      <a href="/html">HTML Öğren</a>
</body>
</html>
 
Üst