Toggle navigation
☰
HTML
CSS
Scripting
Database
<!doctype html> <title>Example</title> <style> .box { width: 100px; height: 100px; background-color: steelblue; margin: 50px auto; /* Apply two animations separated by a comma */ animation: zoomInOut 3s infinite alternate, spinRound 5s linear infinite; } @keyframes zoomInOut { from { scale: 0.5; } to { scale: 1.5; } } @keyframes spinRound { from { rotate: 0deg; } to { rotate: 360deg; } } </style> <div class="box"></div>