Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

myfirst

myfirst

// Add Shortcode
function countup1_shortcode() {

	<style>  
	#countdown {
	    font-size:2rem;
	    }
	</style>
	<div id="countdown">0</div>
	<CENTER>
	       
	 
	<SCRIPT>
	
	var count=0;
	
	var counter=setInterval(timer, 0.01); //1000 will  run it every 1 second
	
	function timer()
	{
	  count=count+10;
	  if (count == 3000)
	  {
	     clearInterval(counter); //counter ended
	      document.getElementById("countdown").innerHTML=3000 ;      
	     return;
	  }
	
	  //Do code for showing the number here
	     document.getElementById("countdown").innerHTML=count ; 
	
	}
	
	</SCRIPT>
	    

}
add_shortcode( 'countup1', 'countup1_shortcode' );