DIRECTORATE MEDICAL & HEALTH SERVICE
Government Nursing College, Kavaratti, Lakshadweep
<!DOCTYPE html> <html> <head> <title>Blinking feature using CSS</title> <style> .blink { animation: blinker 2.5s linear infinite; color: red; font-family: sans-serif; } @keyframes blinker { 50% { opacity: 0; } } </style> </head> <body> <p class="blink" style="font-size:13px;" ><a href="/Images/Lakshadweep_Prospectus_2024_25.pdf" target="_blank">Click Here to Get Basic B.Sc. Nursing Prospectus 2024-2025 </a></p> </body> </html>
Back