Qhmit
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>Example</title> <style> .chameleon { font: 100 3em sans-serif; color: yellowgreen; text-decoration: overline wavy green; animation: myAnimation 3s ease 1s 5 alternate forwards; } @keyframes myAnimation { 50% { text-decoration: orange; } 100% { text-decoration: blue; } } </style> <h1 class="chameleon">Chameleon</h1>
Preview