Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>Example</title> <style> img { animation: myAnimation 2s ease 1s 3 alternate forwards; } @keyframes myAnimation { 100% { transform: rotate(360deg); } } </style> <img src="/pix/samples/3s.jpg" alt="Scenery in New Zealand">