<!DOCTYPE html>
<html>
<head>
<title>Girar un cuadrado verde</title>
<style>
.square {
width: 100px;
height: 100px;
background-color: green;
animation: rotate 2s infinite;
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div class="square"></div>
</body>
</html>
No hay comentarios:
Publicar un comentario