Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>Example</title> <style> p { font: 100 2em sans-serif; } .animated { animation: myAnimation 3s ease 1s 3 alternate forwards; } @keyframes myAnimation { 100% { font-weight: 900; } } </style> <p>CSS <span class="animated">animatable</span> property</p>