2028 Calendar — Leap Year Grid With US, India & UK Holidays
Plan ahead for 2028 — a leap year with 366 days, the LA Summer Olympics (Jul 14-30), the US Presidential Election (Tue Nov 7), and a Saturday New Year's Day that triggers a UK substitute bank holiday on Monday January 3. Jan 1 falls on Saturday; Feb 29 (Leap Day) is a Tuesday; Easter is April 16; Diwali is October 17. Federal, gazetted and bank holidays for US, India and UK are color-coded with click-to-inspect day-of-year, ISO week and observed-date logic.
Quick Conversion
Formula: days = weeks × 7
Full Year 2028 — 12-Month Grid
Selected: 2028-02-29
This is Leap Day — a calendar artifact added every 4 years to keep the Gregorian year aligned with the 366-rotation tropical year (365.2422 days). The next leap day after this is Feb 29, 2032.
2028 Holiday Reference (US + India + UK)
| Date | Day | Name | Country | Kind |
|---|---|---|---|---|
| 2028-01-01 | Saturday | New Year's Day (Sat — UK obs Mon Jan 3) | ALL | federal |
| 2028-01-17 | Monday | Martin Luther King Jr. Day | US | federal |
| 2028-01-26 | Wednesday | Republic Day (India) | IN | federal |
| 2028-02-21 | Monday | Presidents Day | US | federal |
| 2028-02-23 | Wednesday | Maha Shivaratri | IN | religious |
| 2028-02-29 | Tuesday | Leap Day | ALL | civic |
| 2028-03-11 | Saturday | Holi | IN | religious |
| 2028-04-14 | Friday | Good Friday | BOTH | religious |
| 2028-04-16 | Sunday | Easter Sunday | BOTH | religious |
| 2028-04-17 | Monday | Easter Monday (UK Bank Holiday) | UK | religious |
| 2028-05-01 | Monday | Early May Bank Holiday (UK) | UK | civic |
| 2028-05-29 | Monday | Memorial Day (US) / Spring Bank Holiday (UK) | BOTH | federal |
| 2028-06-19 | Monday | Juneteenth | US | federal |
| 2028-07-04 | Tuesday | Independence Day (US) | US | federal |
| 2028-07-21 | Friday | Summer Olympics Open — Los Angeles | ALL | civic |
| 2028-08-15 | Tuesday | Independence Day (India) | IN | federal |
| 2028-08-28 | Monday | Summer Bank Holiday (UK) | UK | civic |
| 2028-09-04 | Monday | Labor Day | US | federal |
| 2028-10-02 | Monday | Gandhi Jayanti | IN | federal |
| 2028-10-09 | Monday | Columbus Day / Indigenous Peoples Day | US | federal |
| 2028-10-17 | Tuesday | Diwali | IN | religious |
| 2028-11-07 | Tuesday | US Presidential Election | US | civic |
| 2028-11-11 | Saturday | Veterans Day (US) / Armistice Day (UK) | BOTH | federal |
| 2028-11-23 | Thursday | Thanksgiving | US | federal |
| 2028-12-25 | Monday | Christmas Day | ALL | federal |
| 2028-12-26 | Tuesday | Boxing Day (UK) | UK | federal |
Leap-Year Math (Gregorian Rule)
isLeap(y) = (y % 4 === 0) AND (y % 100 !== 0 OR y % 400 === 0)For y = 2028: 2028 % 4 = 0 (yes), 2028 % 100 = 28 (not century year) → LEAP. 2028 has 366 days, February has 29 days. The tropical year is 365.2422 days; the Gregorian rule averages to 365.2425 days/year — about 26 seconds longer than the actual solar year, drifting one day every ~3,236 years.
jan1(2028) = (jan1(2027) + 365) mod 7 = (Fri + 1) = SaturdaySaturday Jan 1 means an unusual ISO week kickoff — Jan 1 and Jan 2 belong to ISO week 53 of 2027 (because ISO week 1 must contain the first Thursday, which is Jan 6, 2028).
Day-Of-Year Reference (2028 Leap)
| Date | DOY | ISO Week | Note |
|---|---|---|---|
| 2028-01-01 | 1 | W53 | Year start (Sat) |
| 2028-01-26 | 26 | W4 | Republic Day IN |
| 2028-02-29 | 60 | W9 | LEAP DAY |
| 2028-04-16 | 107 | W15 | Easter Sunday |
| 2028-05-29 | 150 | W22 | Memorial / Spring Bank |
| 2028-07-04 | 186 | W27 | US Indep. Day (Tue) |
| 2028-07-14 | 196 | W28 | LA Olympics open |
| 2028-08-15 | 228 | W33 | Indep. Day IN |
| 2028-10-17 | 291 | W42 | Diwali |
| 2028-11-07 | 312 | W45 | US Presidential Election |
| 2028-11-23 | 328 | W47 | Thanksgiving |
| 2028-12-25 | 360 | W52 | Christmas (Mon) |
Recently Inspected
How to Use the 2028 Calendar — 5 Steps
- Step 1. Scan the 12-month grid. The violet→sky→amber ribbon highlights your selected month — note February has 29 cells because 2028 is a leap year.
- Step 2. Click any cell to see its weekday, day-of-year (out of 366), ISO week number and any holiday note.
- Step 3. Identify holidays by color: rose = US federal, emerald = India gazetted, sky = UK bank holiday, fuchsia = all three.
- Step 4. Toggle Print View, then File → Print → Save as PDF for a clean monochrome wall calendar.
- Step 5. Inspected dates auto-save to localStorage — useful for planning Olympic events, Saturday weddings, or election-day scheduling.
A Leap Year, an Olympics, and an Election — Why 2028 Matters
In 2026, an LA28 broadcast coordinator at NBC Sports planning the 17-day Olympic window needs a single grid that already marks Independence Day (Tue Jul 4), the Opening Ceremony (Fri Jul 14), Memorial Day (Mon May 29 — which also collides with the UK Spring Bank Holiday), and the US Presidential Election (Tue Nov 7). This page is that artifact, built on the Gregorian Civil calendar — the 1582 reform of Pope Gregory XIII that corrected the Julian calendar's 11-minute-per-year drift.
The leap rule comes from the Council of Trent's 1563 directive to fix the Easter date, which had drifted 10 days from the vernal equinox. Christopher Clavius and Aloysius Lilius designed the corrected rule: leap if divisible by 4, except century years not divisible by 400. By that test, 2028 is a leap year (divisible by 4, not a century year). 2000 was leap (divisible by 400). 1900, 2100, 2200 are NOT. The Gregorian average year is 365.2425 days — versus the tropical year of 365.2422 — a residual error of 26 seconds per year, equivalent to one day every 3,236 years.
Christian Zeller's 1882 congruence and John Conway's 1973 Doomsday algorithm both compute the weekday for any Gregorian date with no lookup. For 2028, Conway's doomsday is Tuesday — the weekday of Jan 4 (leap-year anchor), Feb 29 (leap-day), Apr 4, Jun 6, Aug 8, Oct 10, Dec 12, and the last day of February (Feb 29 = Tuesday). Memorize century doomsdays: 1800s = Friday, 1900s = Wednesday, 2000s = Tuesday, 2100s = Sunday. From the century anchor, every year doomsday advances by 1 weekday per year, plus 1 extra in leap years.
The Los Angeles 2028 Summer Olympics — opening Friday July 14, 2028 and closing Sunday July 30 — will be the third Summer Games hosted by Los Angeles (1932, 1984, 2028), tied with London as the only city to host three times by 2028. The Paralympic Games follow August 15-27. The LA28 organizing committee has confirmed flag football, lacrosse, cricket (T20), squash and baseball/softball on the sport program — cricket's first appearance since the 1900 Paris Games.
November 7, 2028 is the next US Presidential Election — the Tuesday after the first Monday of November, per 3 U.S.C. § 1 (codified 1845 to give farmers time to travel after Sunday worship). The winner takes office Saturday January 20, 2029 (Inauguration Day per the 20th Amendment, ratified 1933), with the public ceremony shifted to Monday January 22 per precedent (the 1985 Reagan second-term and 2013 Obama second-term inaugurations were both moved off Sunday for the same reason).
For shorter-range tools see Days Until (countdown to any 2028 date), Leap Year Checker (test any year), Business Days Between (workday counts), and Moon Phase (lunar data for astrophotography sessions).
ISO 8601, ratified in 1988 and most recently amended 2019, defines YYYY-MM-DD date format and Monday-start week numbering. For 2028, ISO week 1 begins Mon Jan 3 (Jan 1 = Sat and Jan 2 = Sun belong to ISO week 53 of 2027). 2028 itself has 52 ISO weeks; the leap day Feb 29 falls in ISO week 9. The Indian Saka calendar, adopted by the Government of India on March 22, 1957 for parallel official use, makes 2028 CE = Saka 1949-1950.
Trusted by Olympic coordinators, astrophotographers, wedding planners and historians
“Coordinating venue logistics for LA 2028 requires a 2028 calendar that already marks Olympic opening (Jul 14), Paralympic schedule (Aug 15) and US federal holiday clashes. This page is my desktop bookmark.”
“I plan deep-sky imaging sessions 24+ months out. Knowing 2028 is a leap year — and that Feb 29 falls on a Tuesday near new-moon — lets me block calibration nights in advance. The leap-day callout is a nice touch.”
“Brides booking 2028 want Saturday May dates. The grid shows Saturdays in May 2028 are May 6, 13, 20, 27 — and that Memorial Day (US) and Spring Bank Holiday (UK) both land May 29. That collision matters for international guests.”
“The Gregorian leap rule citation and Conway doomsday treatment for 2028 are both correct and well-phrased. I've linked this from my Trinity Term reading list on calendar science.”
Love using our calculator?
Related Tools
Related Articles
Dive deeper with our expert guides and tutorials related to 2028 Calendar — Leap Year Grid With US, India & UK Holidays