Untitled

 avatar
unknown
plain_text
a year ago
419 B
5
Indexable
<!DOCTYPE html>
<html>
<head>
  <style>
    a {
      color: black;
      background: linear-gradient(90deg, red, orange, yellow, green, blue, purple);
      background-clip: text;
      -webkit-background-clip: text;
      font-size: 30px;
      transition: 500ms ease;
    }

    a:hover {
      color: transparent;
    }
  </style>
</head>
<body>
  <a href="#">Rainbow Link</a>
</body>
</html>
Editor is loading...
Leave a Comment