Countdown Timer Widget

Create embeddable countdown timers with custom styles. Set target date, customize colors, and generate HTML embed code for your website.

44.0Kuses
7.5/10(340)

Settings

Preview

Launch Day
00Days
00Hours
00Minutes
00Seconds

Embed Code

<!-- Countdown Widget by ToolBird -->
<div id="countdown-widget-tb"></div>
<style>.countdown-widget { background: #1a1a2e; color: #ffffff; padding: 32px; border-radius: 16px; text-align: center; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; } .countdown-title { font-size: 20px; margin-bottom: 20px; font-weight: 600; } .countdown-units { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; } .countdown-unit { display: flex; flex-direction: column; align-items: center; } .countdown-value { font-size: 48px; font-weight: 700; line-height: 1; } .countdown-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; margin-top: 8px; } .countdown-unit { background: #e9456015; padding: 16px 20px; border-radius: 12px; min-width: 80px; }</style>
<script>
(function(){
  var target = new Date("2026-05-23T07:13").getTime();
  var units = ['days','hours','minutes','seconds'];
  function update(){
    var d = target - Date.now();
    if(d<0) d=0;
    var vals = {
      days: Math.floor(d/86400000),
      hours: Math.floor((d/3600000)%24),
      minutes: Math.floor((d/60000)%60),
      seconds: Math.floor((d/1000)%60)
    };
    var html = '<div class="countdown-title">Launch Day</div>';
    html += '<div class="countdown-units">';
    units.forEach(function(u){
      html += '<div class="countdown-unit"><span class="countdown-value">'+String(vals[u]).padStart(2,'0')+'</span><span class="countdown-label">'+u+'</span></div>';
    });
    html += '</div>';
    document.getElementById('countdown-widget-tb').className='countdown-widget';
    document.getElementById('countdown-widget-tb').innerHTML=html;
  }
  update();
  setInterval(update,1000);
})();
</script>

Free Countdown Timer Widget Generator

Create beautiful, embeddable countdown timers for your website with our free online tool. Perfect for product launches, event countdowns, sales promotions, and more.

Features

  • Four distinct style presets: Modern, Minimal, Bold, and Neon
  • Full color customization for background, text, and accent
  • Responsive design that works on all devices
  • Lightweight HTML/CSS/JS embed code with no dependencies
  • Real-time preview as you customize

Recommended Products

Ad

Affiliate Disclosure: As an Amazon Associate, ToolBird earns from qualifying purchases. Links above are affiliate links — if you buy through them, we may earn a small commission at no extra cost to you.

Disclaimer: This tool is provided as-is for informational and educational purposes only.

ToolBird Assistant

Find the right tool instantly

Hey! I'm ToolBird Assistant. Tell me what you need and I'll find the right tool for you.