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 */
}
INDIAN ARMY