| Current Path : /var/www/html/Joomla/launch/Html/ |
| Current File : /var/www/html/Joomla/launch/Html/landingpage_01.html |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Sondr.setup </title>
<meta name="description" content="A launching page for Sondr.">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="https://use.typekit.net/gxw6ajn.css">
</head>
<body>
<div class="bg">
<div class="center">
<div class="clear"> <img src="../images/s.png"></div>
<div class="clear"><p id="demo"></p></div>
<div class="bottom"><p>Avenue Eugene Plasky 179 - 1030 Brussels - T. 02 612 17 90 </p></div>
</div>
</div>
<script>
// Set the date we're counting down to
var countDownDate = new Date("Oct 15, 2020 10:00:00").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60* 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
var frames = Math.floor((distance % (1000))/(40));
// Display the result in the element with id="demo"
document.getElementById("demo").innerHTML = days + " : " + hours + " : "
+ minutes + " : " + seconds ;
// If the count down is finished, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "SONDR - READY SET GOOOOOO";
}
}, 1000);
</script>
</body>
</html>