<img class="rotate"
src="https://images.freeimages.com/images/large-previews/5b7/on-the-road-7-1384791.jpg"
/>
.rotate {
width: 300px;
height: 300px;
animation: rotation infinite 3s linear;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}