Lele
4 years ago in Plain Text
<style>
body {
background-image: url('https://imgur.com/HMZ0HQj.jpg');
}
</style>
<script>
// Set the date we're counting down to
var countDownDate = new Date("Mar 29, 2020 16:40: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);
// Display the result in the element with id="demo"
document.getElementById("demo").innerHTML = "Faltam exatamente " + days + " dias, " + hours + " horas, "
+ minutes + " minutos e " + seconds + " segundos para a Lelê e o Gui se encontrarem de novo para dar muitos abraços e beijinhos";
// If the count down is finished, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "É agora que a Lelê e o Gui se encontram de novo para dar muitos abraços e beijinhos";
}
}, 1000);
</script>
<body text="#fffae8">
<table style="width:75%" align="center">
<tr>
<th colspan="3" bgcolor="#a82259"><font size=7 color="white">
<p id="demo"></p>
</th>
</tr>
<tr>
<th>
<img src="https://imgur.com/ilcMnPX.jpg" style="width:55%;">
</th>
</tr>
<tr>
<th bgcolor="#a82259"><font size=6 color="white">
Te amo absurdamente, meu amor ❤️
</th>
</tr>
</table>
<p id="demo"></p>
</body>