Javascript Code Showing

Yes! I really prefer the clean and customizable look of the digital clock :slight_smile: I will have a look at the Features Category!

This is the code I use:

<p id="countdown" style="font-size: 120px;></p>

<style type="text/css">
p {
font-family: roboto light regular;
text-align: center;
color: #ffffff;
</style>

<script type="text/javascript">
    function EmbedInit()
    {
        // Init will be called when this page is loaded in the client.
// Set the date we're counting down to
    var nowDate = new Date(); 
    var countDownDate = new Date(nowDate.getFullYear(), nowDate.getMonth(), nowDate.getDate(), 11, 15, 0, 0);
    // Update the count down every 1 second
    var x = setInterval(function() {

      // Get todays date and time
      var now = new Date().getTime();
     // Find the distance between now an the count down date
      var distance = countDownDate - now;

      if (distance < 1) {
        countDownDate = countDownDate.setDate(countDownDate.getDate()+1);
        distance = countDownDate - now;
      }
      
      // Time calculations for hours, minutes and seconds
      var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
      var seconds = Math.floor((distance%(1000 * 60))/ 1000);

			var time=('0'  + minutes).slice(-2)+':'+('0' + seconds).slice(-2);
     
     // Display the result
      document.getElementById("countdown").innerHTML =  time 
    }, 1000);
        return;
    }
</script>

Thank you so much for your help :slight_smile: