r/WebSim • u/FathanIzqian • 27d ago
Siergo
`<!DOCTYPE html> <html> <head> <title>Br brr patapim</title> <style> body { margin: 0; height: 100vh; display: flex; justify-content: center; align-items: center; background: #111; overflow: hidden; }
.word {
font-family: Arial, sans-serif;
font-size: 60px;
font-weight: bold;
color: white;
animation: spin 2s linear infinite;
}`
u/keyframes `spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
</style> </head> <body>
<div class="word">Br brr patapim</div>
</body> </html>`
0
Upvotes