<!DOCTYPE html>
<title>Example</title>
<style>
.animated {
font: 100 1em sans-serif;
animation: myAnimation 3s ease 1s 3 alternate forwards;
}
@keyframes myAnimation {
80% {
font: 100 3em san-serif;
100% {
font: 900 2em san-serif;
</style>
<h1 class="animated">CSS animatable property</h1>