๐ย Basic and clinical medicine
๐ย 800+ videos
๐ย Multiple playback speeds
๐ย 3D anatomy atlases included
๐ย New videos weekly
๐ย Up-to-date medical articles
<div id="timer"></div>
<script>
var countDownDate = new Date("Feb 03, 2021 16:40:00").getTime();
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);
// Output the result in an element with id="demo"
document.getElementById("timer").innerHTML = "<p><strong>"+ days + "</strong>Days</p><p><strong>" + hours + "</strong>Hours</p><p><strong>"
+ minutes + "</strong>Minutes</p><p class='sec_txt'><strong>" + seconds + "</strong>Seconds</p>";
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("timer").innerHTML = "EXPIRED";
}
}, 1000);
</script>