x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
p {
5
  font: 100 2em sans-serif;
6
}
7
.animated {
8
  animation: myAnimation 3s ease 1s 3 alternate forwards;
9
}
10
11
@keyframes myAnimation {
12
  100% {
13
    font-weight: 900;
14
  }
15
}
16
</style>
17
18
19
<p>CSS <span class="animated">animatable</span> property</p>