A patriotic digital clock displaying time in **HH:SS:MM** format with an American red/white/blue theme and subtle stars animation.
American-Clock
A patriotic digital clock in your browser, set to Eastern time. Hours, seconds and minutes are colored red, white and blue, with a subtle stars background and a blinking colon.
What's in it
- `index.html`, `clock.css` and `clock.js`.
- An HH:SS:MM layout.
- The Orbitron font.
- A stars animation.
- A blinking colon.
The tick
Every second a `setInterval` calls `updateClock`. It reads the browser clock, shifts it to EST (UTC-5, ignoring DST), splits it into hours, seconds and minutes, and writes each into its colored element. I hardcoded EST without DST; a flag clock does not need daylight saving.