The Revaluation Result for Nov / Dec - 2024 Examinations published
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.blinking-text {
text-align: center;
margin-top: 0%;
font-size: 20px;
color: green;
animation: blink 1s infinite;
}