FREE

Embed Widget

Add a live countdown timer to any website with a single line of HTML.

No backend needed. No signup required for basic embeds. Copy the iframe code and paste it into your site — works with WordPress, Webflow, Squarespace, Notion, or any platform that accepts HTML.

Widget Types

Event Countdown

Count down to a specific date and time. Shows days, hours, minutes, seconds.

Product launches, event registration pages, holiday countdowns.

?type=event&title=Launch&date=2026-12-31T00:00:00Z

Duration Timer

Count down from a fixed duration. Alarm sounds at zero.

Meeting timers, classroom activities, workout intervals, pomodoro sessions.

?type=countdown&duration=1500&title=Focus+Session

Interval Timer

Alternating work and rest periods that loop automatically.

HIIT workouts, Tabata training, structured classroom sessions.

?type=interval&work=45&rest=15&rounds=8

URL Parameters

ParameterTypeDefaultDescription
typeenumcountdowncountdown, event, interval
titlestringDisplay title above the timer
durationintegerSeconds (for countdown type)
dateISO8601Target datetime (for event type)
workintegerWork interval in seconds (interval type)
restintegerRest interval in seconds (interval type)
roundsintegerNumber of cycles (interval type)
themeenumlightlight, dark, auto
colorhex6C63FFPrimary color without #
langstringenen, zh, ja, es, fr, de, ko
show_titleboolean1Show/hide the title
show_dateboolean1Show target date (event type only)
show_brandboolean1Show Castimer branding (0 = Pro only)
tzstringUTCTimezone (IANA format, e.g. Asia/Taipei)
alarmboolean1Play alarm sound at zero

Embed Generator

Configure your widget below and copy the generated code.

Looking for a more visual experience? Try our standalone Embed Generator Tool with live preview and advanced options.

#6C63FF

Live Preview

HTML
<iframe
  src="/widget?type=countdown&duration=300&theme=light&color=6C63FF&lang=en&show_brand=1"
  style="width:100%;max-width:400px;height:400px;border:none;border-radius:12px;"
  title="Castimer Widget"
  loading="lazy"
></iframe>

Customization

Themes

Three built-in themes. Set via the theme parameter.

light
dark
auto

Custom Colors

<!-- Purple primary color -->
<iframe src="/widget?type=countdown&duration=300&color=6C63FF" ...></iframe>

<!-- Teal primary color -->
<iframe src="/widget?type=countdown&duration=300&color=1D9E75" ...></iframe>

Hide Branding (Pro)

Set show_brand=0 to remove the Castimer watermark. Requires a Pro or Enterprise plan.

<iframe src="/widget?type=countdown&duration=300&show_brand=0" ...></iframe>

Examples

5 Minute Meeting Timer

<iframe
  src="/widget?type=countdown&duration=300&title=Meeting+Timer&theme=light"
  style="width:100%;max-width:360px;height:360px;border:none;"
  title="5 Minute Meeting Timer"
></iframe>

Christmas Countdown

<iframe
  src="/widget?type=event&title=Christmas&date=2026-12-25T00:00:00Z&tz=America/New_York&theme=dark"
  style="width:100%;max-width:360px;height:360px;border:none;"
  title="Christmas Countdown"
></iframe>

Tabata Interval Timer

<iframe
  src="/widget?type=interval&work=20&rest=10&rounds=8&title=Tabata&theme=light"
  style="width:100%;max-width:360px;height:360px;border:none;"
  title="Tabata Timer"
></iframe>

FAQ