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