Blink
Let text . For accessibility reasons: don't use this or add a button that makes the blinking stop.
HTML
Let text <blink>blink like the old days</blink>.
CSS
@keyframes blinker {
0% {opacity: 0;}
49% {opacity: 0;}
50% {opacity: 1;}
}
blink {
animation-name: blinker;
animation-duration: 1s;
animation-iteration-count:infinite;
}