Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>Example</title> <style> .chameleon { font: bold 3em sans-serif; color: red; animation: myAnimation 10s ease 1s 1 forwards; } @keyframes myAnimation { 50% { color: green; } 100% { color: blue; } } </style> <h1 class="chameleon">Chameleon</h1>
Preview