Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>Example</title> <style> .animatedBox { width: 200px; padding: 20px; text-align: center; font: 24px sans-serif; border-style: solid; border-width: 20px; border-color: lemonchiffon; animation: myAnimation 6s linear 1s 1 forwards; } @keyframes myAnimation { 100% { border-color: yellowgreen orange olive gold; } } </style> <div class="animatedBox">Animated box</div>