Untitled
unknown
plain_text
2 years ago
419 B
7
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