Untitled
Anonymous
plain_text
04/22/2023 11:09 AM
1.2 KB
17
Indexable
<!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>
Editor is loading...