Untitled

 avatar
unknown
plain_text
a year ago
1.5 kB
19
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        p{ 
            font-size: 60px;
            letter-spacing:30px ;
            color:transparent;
            font-weight: 700;
            font-family:'Desert Area-Q';
            animation: migotanie 5s infinite;
                        
        }
        @keyframes migotanie{
            0% { background:linear-gradient(to right, green, blue,yellow,red);
                background-clip: text;}
            50% {background:linear-gradient(to right, blue, rgb(57, 57, 29),rgb(224, 39, 224),red);
                background-clip: text;}
            100%{ background:linear-gradient(to right, green, rgb(0, 255, 34),rgb(255, 0, 230),rgb(47, 14, 235));
                background-clip: text;}
            }
        div{
            border-radius: 60px;
            display:flex;
            height:200px;
            background-color: rgb(0, 128, 100);
            justify-content: center;
        }
        .gradientkolo{
            border-radius: 100px;
            background:radial-gradient(circle,green,blue,yellow,red,pink);
            width:200px;
            height:200px;
        }
    </style>
</head>
<body>
    <div>
    <p>Pawel</p>
    </div>
    <div class="gradientkolo">

    </div>
</body>
</html>
Editor is loading...
Leave a Comment