Morton Digital

2026-05-18 · 6 min read

City of Spokane, WA — WCAG 2.1 AA Compliance and the April 2027 DOJ Title II Deadline

Abstract editorial illustration: a government website accessibility compliance network for City of Spokane, Washington, rendered in fine copper line work on dark slate, with WCAG accessibility markers at key compliance nodes. No text.

City of Spokane, Washington — population 230,000+ [2] — operates my.spokanecity.org as its primary public-facing digital presence. With the DOJ Title II Final Rule compliance deadline of April 26, 2027 now under 11 months away, we audited the my.spokanecity.org homepage directly from its live HTML to understand what accessibility barriers city residents currently face.

We found 3 verified Level A/A/AA failures. Each one is documentable under 28 CFR § 35.200 and each one creates a demonstrable barrier for residents who rely on assistive technology to access city services.

The DOJ Title II Deadline for City of Spokane

The DOJ Title II Final Rule — extended by interim final rule on April 20, 2026 [1] — requires every covered state and local government entity to bring its public-facing web content into conformance with WCAG 2.1 Level AA. The rule covers the city's main website, department portals, online forms, PDFs, and third-party platforms operated on the city's behalf [3].

With a population of 230,000+, City of Spokane is above the 50,000-resident threshold and faces the earlier of the two compliance dates: April 26, 2027. The rule does not require perfection on day one — it requires a good-faith compliance program with documented remediation. But it does require that covered entities have identified their failures and are actively remediating them. The time to begin that work is now.

According to WebAIM's 2024 analysis of the top 1,000,000 home pages, 95.9% had detectable WCAG 2 failures [4]. Government websites consistently outpace the general web in accessibility failure rates. The failures we found on my.spokanecity.org are representative of what we see across government websites of this size — fixable, documented, and addressable within the remaining timeline.

Verified WCAG Failures on my.spokanecity.org

Every finding below was verified from the live homepage DOM — not from an automated scan estimate, not from training data. We fetched the actual page source and checked each element against its relevant WCAG 2.1 success criterion.

Finding 1: Zero heading elements on the homepage — no H1 through H6 anywhere on the page (SC 1.3.1, Level A)

The Spokane homepage contains no heading elements of any level — confirmed via live DOM inspection. Every element on the page is a generic div or span. For a resident using JAWS, NVDA, or VoiceOver, the entire page is a structureless wall of content with no navigable headings.

Fix: Add a single H1 identifying the site, and add H2 elements for each major section. Heading hierarchy must reflect the visual structure of the page.

Estimated effort: 4–8 hours (template-level changes)

Finding 2: No skip navigation link — keyboard users must tab through the entire navigation on every page (SC 2.4.1, Level A)

The Spokane homepage has no "Skip to Main Content" link or any equivalent bypass mechanism. Keyboard-only residents must tab through the full navigation header on every page, on every visit.

Fix: Add a visually hidden but keyboard-focusable skip link as the very first element: . Wrap main content in

.

Estimated effort: 1–2 hours (one-time template change)

Finding 3: Page uses zero ARIA landmark roles and zero semantic landmark elements (SC 1.3.6, Level AA)

The Spokane homepage uses no ARIA landmark roles and no HTML5 landmark elements — no main, header, footer, nav, or any role attributes. Screen reader users who navigate by landmark find nothing. The combination of zero headings, no skip link, and no landmarks makes the site navigable only by reading linearly.

Fix: Wrap the site header in

, primary navigation in