Untitled

mail@pastecode.io avatar
unknown
plain_text
2 years ago
900 B
2
Indexable
Never
<!DOCTYPE html>
<html>
<head>
    <title>Welcome!</title>
    <style>
        /* Define the spinning animation */
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        /* Style for the spinning face */
        .face {
            width: 100px;
            height: 100px;
            background-color: yellow;
            border-radius: 50%;
            animation: spin 2s infinite linear;
            /* Add any other styles you want for the face here */
        }
        /* Style for the text */
        .text {
            font-size: 24px;
            text-align: center;
            /* Add any other styles you want for the text here */
        }
    </style>
</head>
<body>
    <div class="face"></div>
    <div class="text">Welcome!</div>
</body>
</html>