ok
Direktori : /home2/selectio/public_html/y1jobportal.in/ |
Current File : /home2/selectio/public_html/y1jobportal.in/demo-download.php |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Coming Soon</title> <style> @keyframes blink { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } } body { font-family: Arial, sans-serif; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #8a2be2; /* Purple */ animation: fadeIn 1s ease-out; /* Fade in animation */ } .container { text-align: center; background-color: #fff; /* White */ padding: 20px; border-radius: 10px; border: 5px solid #8a2be2; /* Purple */ animation: fadeIn 1s ease-out; /* Fade in animation */ } h1 { font-size: 36px; color: #333; margin-bottom: 20px; /* Added margin */ animation: fadeIn 1s ease-out; /* Fade in animation */ } p { font-size: 18px; color: #666; margin-bottom: 20px; /* Added margin */ animation: fadeIn 1s ease-out; /* Fade in animation */ } .store-icon { max-width: 100px; } .back-button { background-color: #8a2be2; color: #fff; padding: 10px 20px; border: none; border-radius: 5px; font-size: 16px; cursor: pointer; margin-top: 20px; } .back-button:hover { background-color: #6a1c99; } .blink { animation: blink 1s infinite; /* Blinking animation */ } </style> </head> <body> <div class="container"> <h1>Our App is Coming Soon!</h1> <p>Stay tuned for the launch of our app on the Play Store.</p> <img src="images/logo/playstore.png" alt="Play Store" class="store-icon blink"><br> <button class="back-button" onclick="goBack()">Go Back</button> </div> <script> function goBack() { window.history.back(); } </script> </body> </html>