<!DOCTYPE html>
<title>Example</title>
<style>
.animated {
font: 100 2em sans-serif;
letter-spacing: -2em;
animation: myAnimation 1s ease 1s 5 alternate forwards;
}
@keyframes myAnimation {
100% {
letter-spacing: 1em;
</style>
<h1 class="animated">Bounce</h1>