A Countdown Wall is a single screen that shows several countdowns at once - perfect for product drops, sprints, events, or class schedules. Below you’ll find ready-made layouts (2×2, 3×2), copy-paste code using our Embed view, and practical tips for TV/monitor setups.
A grid of minimal embedded timers that run side by side on a TV, monitor, or projector. Each tile has a title and the time left - no clutter, just the essentials.
src
.<style>
.pc-wall { display:grid; gap:16px; grid-template-columns: repeat(2, 1fr); }
.pc-tile { background:#0b0b0c; padding:8px; border-radius:12px; }
.pc-tile iframe { width:100%; height:220px; border:0; border-radius:8px; }
@media (min-width: 1100px) { .pc-tile iframe { height:260px; } }
@media (max-width: 640px) { .pc-wall { grid-template-columns: 1fr; } }
</style>
<div class="pc-wall">
<div class="pc-tile">
<iframe src="../embed.html?title=Release%20v2.3&ts=2025-10-01T10:00:00Z" title="Release v2.3"></iframe>
</div>
<div class="pc-tile">
<iframe src="../embed.html?title=Client%20Demo&ts=2025-09-05T14:00:00Z" title="Client Demo"></iframe>
</div>
<div class="pc-tile">
<iframe src="../embed.html?title=Sprint%20End&ts=2025-09-12T16:00:00Z" title="Sprint End"></iframe>
</div>
<div class="pc-tile">
<iframe src="../embed.html?title=All-Hands&ts=2025-09-15T09:00:00Z" title="All-Hands"></iframe>
</div>
</div>
<style>
.pc-wall { display:grid; gap:14px; grid-template-columns: repeat(3, 1fr); }
.pc-tile { background:#0b0b0c; padding:8px; border-radius:12px; }
.pc-tile iframe { width:100%; height:200px; border:0; border-radius:8px; }
@media (min-width: 1400px) { .pc-tile iframe { height:220px; } }
@media (max-width: 900px) { .pc-wall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pc-wall { grid-template-columns: 1fr; } }
</style>
<div class="pc-wall">
<div class="pc-tile"><iframe src="../embed.html?title=Doors%20Open&ts=2025-09-03T16:30:00Z" title="Doors Open"></iframe></div>
<div class="pc-tile"><iframe src="../embed.html?title=Keynote&ts=2025-09-03T18:00:00Z" title="Keynote"></iframe></div>
<div class="pc-tile"><iframe src="../embed.html?title=Break&ts=2025-09-03T19:30:00Z" title="Break"></iframe></div>
<div class="pc-tile"><iframe src="../embed.html?title=Panel&ts=2025-09-03T20:00:00Z" title="Panel"></iframe></div>
<div class="pc-tile"><iframe src="../embed.html?title=Afterparty&ts=2025-09-03T22:00:00Z" title="Afterparty"></iframe></div>
<div class="pc-tile"><iframe src="../embed.html?title=Doors%20Close&ts=2025-09-03T23:59:00Z" title="Doors Close"></iframe></div>
</div>
Check the ts=...
value. Use ISO like 2025-12-31T23:59:59Z
or epoch seconds.
Increase the iframe height (e.g., 220→260 px) or reduce top/bottom padding of the tile.
Use UTC (append “Z”) or specify the correct local time when generating each embed link.
Generate embed links from the homepage (Shift/Alt + Share), paste them into the layout above, and go full screen. That’s it.