3 3 Minute Timer with Alarm, Online and Free
By Shihab Mia ยท Updated 2026-07-07
Ready. Press Start for a 3 minute countdown.
This is a free online 3 minute timer that is already set to 03:00, so you can just press Start and go. It counts down from three minutes to zero and rings an alarm when the time is up, which makes it perfect for a soft boiled egg, a cup of steeping black tea, a plank hold, or a short breathing exercise. Nothing to install and nothing to sign up for, it runs entirely in your browser.
What is the 3 Minute Timer?
A three minute timer is a fixed duration countdown. You start with 180 seconds on the clock, the display ticks down through 02:59, 02:58 and so on, and the moment it reaches 00:00 an alarm sounds so you do not have to keep watching the screen. On this page the timer is preset to exactly three minutes, but you can nudge the minute and seconds boxes before you start if you want 2:45 or 3:30 instead.
Under the hood the timer does not simply subtract one second every second, because that method drifts badly the moment a phone locks or a browser tab moves to the background. Instead, when you press Start it records the exact clock time three minutes into the future, then on every update it compares that target against the real current time and shows the true difference. That means if you switch apps for ninety seconds and come back, the timer already reflects the ninety seconds that actually passed rather than freezing where it left off. This live clock approach is what keeps a browser countdown honest.
When the countdown hits zero the timer plays a short alarm through your device using the Web Audio API, a few quick 880 Hz beeps that fade out over about a second. The sound is generated on the fly, so there is no audio file to download and the alarm works offline. If your browser blocks audio until you interact with the page, tapping Start counts as that interaction, so the beep is armed and ready by the time the timer finishes.
Three minutes is a genuinely useful length of time. It is the classic window for a soft to medium soft boiled egg, the recommended steeping time for a robust cup of black tea, a common target for a plank hold or a wall sit, the length of many guided box breathing and meditation resets, and the standard slot for a rebuttal in formal debate or a lightning talk. Because the duration is so common, having a one tap 3 minute timer saves you from fiddling with a phone clock every time.
When to use it
- Boiling the classic three minute egg for a soft, runny yolk with just set whites, ready to dip toast soldiers into.
- Steeping a strong cup of black tea such as English Breakfast or Assam, which brews best at around three minutes before it turns bitter.
- Holding a plank, wall sit, or dead hang and building up toward a three minute endurance target one session at a time.
- Running a short meditation, box breathing, or 4-7-8 breathing reset when you need to calm down quickly between tasks.
- Timing a three minute presentation, elevator pitch, lightning talk, or a debate rebuttal so you finish inside the limit.
- Giving kids a fair, visible three minute limit for toothbrushing rounds, tidy up races, or screen time warnings.
How to use the 3 Minute Timer
- Open the page. The timer already shows 03:00, so you can start straight away.
- If you want a slightly different length, type a new value into the Minutes or Seconds box before starting.
- Press Start. The big display counts down and the thin progress bar shrinks as time runs out.
- Press Pause any time to stop the clock, then Start again to resume from where you paused.
- Press Reset to return the timer to your set duration (three minutes by default).
- When the countdown reaches 00:00 the alarm beeps and the status line reads Time is up.
Formula & method
Worked examples
A default three minute countdown for a soft boiled egg.
- The timer loads showing 03:00 because totalSeconds is 180.
- You press Start, which records endTime as the current time plus 180 seconds.
- Every quarter second the timer computes remaining = round((endTime - now) / 1000) and redraws the display, so it steps 03:00, 02:59, 02:58 down toward zero.
- The progress bar width is remaining / 180 * 100 percent, so at 01:30 left it is exactly half full.
Result: At 00:00 the alarm beeps and the status reads Time is up. Lift out your soft boiled egg.
Adjusting the timer to two minutes and forty five seconds.
- Before starting, you set the Minutes box to 2 and the Seconds box to 45.
- The tool recomputes totalSeconds as 2 * 60 + 45 = 165 and immediately updates the display to 02:45.
- You press Start and it counts down from 165 seconds.
Result: The display now reads 02:45 on start and rings the alarm after two minutes and forty five seconds.
What a 3 minute timer is commonly used for
| Task | Typical time | Notes |
|---|---|---|
| Soft boiled egg | 3 minutes | Runny yolk, just set whites, from boiling water |
| Medium boiled egg | 4 to 5 minutes | Firmer yolk, still slightly soft in the centre |
| Black tea (strong) | 3 to 5 minutes | Three minutes gives a brisk cup before bitterness |
| Green tea | 2 to 3 minutes | Shorter and cooler water to avoid a grassy edge |
| Plank or wall sit | 30 sec to 3 min | Three minutes is a strong endurance target |
| Breathing reset | 3 minutes | Enough for several slow box breathing cycles |
| Debate rebuttal | 3 minutes | Standard slot in many formats |
Minutes and seconds to total seconds
| Duration | Total seconds | Shows as |
|---|---|---|
| 1 minute | 60 | 01:00 |
| 2 minutes | 120 | 02:00 |
| 2 min 30 sec | 150 | 02:30 |
| 3 minutes | 180 | 03:00 |
| 3 min 30 sec | 210 | 03:30 |
| 5 minutes | 300 | 05:00 |
Common mistakes to avoid
- Phone on silent, so the alarm never sounds. The timer plays a beep through your browser, but if your device is muted or the ringer switch is off you will see Time is up without hearing it. Turn the volume up and take your phone off silent before you rely on the sound.
- Expecting the beep before touching the page. Browsers block audio until you interact with a page. Pressing Start counts as that interaction and arms the alarm, so always start the timer with a tap rather than expecting sound from a page you only scrolled.
- Thinking the countdown pauses in a background tab. Some timers freeze when you leave the tab. This one recomputes the remaining time from the live clock, so when you return it shows the real time left, and if three minutes already elapsed it will already read 00:00.
- Forgetting to press Start. The display shows 03:00 on load, but that is the ready state, not a running clock. Nothing counts down until you press Start, so double check the status line says it is counting.
Glossary
- Countdown
- A timer that starts at a set value, here three minutes, and decreases toward zero, as opposed to a stopwatch that counts up from zero.
- Elapsed time
- The amount of time that has already passed since you pressed Start. On a three minute timer, elapsed plus remaining always equals 180 seconds.
- Remaining time
- The time still left before the alarm, shown as MM:SS. It is calculated from the difference between the target end time and the current clock.
- Alarm
- The sound played when the countdown reaches zero. Here it is a short series of 880 Hz beeps generated by the Web Audio API, so no sound file is needed.
- Tab throttling
- The way browsers slow down timers in background tabs to save power. Computing remaining time from the real clock avoids the drift this would otherwise cause.
- Progress bar
- The thin bar that shrinks as time runs out. Its width is the remaining time divided by the starting total, so it reaches zero exactly when the timer does.
Frequently asked questions
Does this 3 minute timer make a sound when it finishes?
Yes. When the countdown reaches 00:00 it plays a short alarm, a few quick beeps generated in your browser, and the status line reads Time is up. Make sure your device volume is on and not muted.
Does the timer keep running if I switch tabs or lock my phone?
Yes. It records the exact end time when you press Start and works out the remaining time from the live clock, so even if the tab is in the background or your phone sleeps, it shows the correct time left when you return, or 00:00 if three minutes already passed.
Is this 3 minute timer free?
Completely free. There is no sign up, no download, and no limit on how many times you use it. It runs entirely in your browser on any phone, tablet, or computer.
Can I change it to a different length than three minutes?
Yes. Before you start, type any value into the Minutes and Seconds boxes, for example 2 and 45 for a two minute forty five second timer, and the display updates instantly. Press Reset to return to three minutes.
Why does the timer show 03:00 before I do anything?
That is the ready state so you can see the preset duration at a glance and start with a single tap. The clock does not begin counting down until you press Start.
How accurate is the countdown?
It is accurate to about a quarter of a second because it checks the real clock several times per second rather than blindly subtracting time, which prevents the drift that background tabs and sleeping devices normally cause.