//Add following CSS to your stylesheet
//css starts here
.blink_me {
animation: blinker 1s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
//css ends here
//Add "blink_me" class to any of the HTML element to apply blink effect on it
<div class="blink_me">BLINK ME</div>