Web.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: underline; text-decoration-color: green; animation: myAnimation 3s ease 1s 5 alternate forwards; } @keyframes myAnimation { 50% { text-decoration-color: orange; } 100% { text-decoration-color: blue; } } </style> <h1 class="chameleon">Chameleon</h1>
Preview