Your Website
/* CSS for the animation */
@keyframes linkAnimation {
0% {
color: #000;
}
50% {
color: #FF5722; /* Change this to your desired color */
}
100% {
color: #000;
}
}
/* CSS for the link */
#animated-link {
text-decoration: none;
font-size: 24px;
font-weight: bold;
animation: linkAnimation 2s infinite; /* Apply the animation to the link */
}
OSSC Combined Recruitment Examination for Junior Stenographer, Junior Grade Typist, Junior Typist, Junior Clerk-cum-Typist, Typist-cum-Copyist, and Data Entry Operator – 2023
Your Website
/* CSS for the animation */
@keyframes linkAnimation {
0% {
color: #000;
}
50% {
color: #FF5722; /* Change this to your desired color */
}
100% {
color: #000;
}
}
/* CSS for the link */
#animated-link {
text-decoration: none;
font-size: 24px;
font-weight: bold;
animation: linkAnimation 2s infinite; /* Apply the animation to the link */
}