open-scans

Scan Report: USA Cities over 100k 2/3

🎯 Priority: Pages with Most Errors

Focus your efforts on these pages to make the biggest impact (combined scanner unique failures):

Page axe Unique ALFA Unique Equal Access Unique AccessLint Unique Total Unique Page Title
View Page 352 355 841 361 1909 Akron, OH
View Page 121 21 307 121 570 Escondido, CA | Official Website
View Page 28 43 309 31 411 Clarksville, TN | Official Website
View Page 32 28 310 21 391 Macon-Bibb County Government
View Page 28 25 298 23 374 Yonkers, NY | Official Website
View Page 13 31 258 36 338 Welcome to the City of Alexandria Homepage! | City of Alexandria, VA
View Page 44 19 227 11 301 City of Springfield, MA: City of Springfield, MA
View Page 5 66 191 3 265 Home | City of Rancho Cucamonga
View Page 75 24 85 56 240 Home - City of Santa Clarita
View Page 37 25 138 27 227 Home - City of Roseville

🔧 Priority: Most Common Issues (ALFA)

These ALFA accessibility issues appear most frequently across your pages:

Rule Pages Affected Documentation
SIA-R111: Interactive elements have a sufficient target size 70 of 100 View Rule
SIA-R66: Text has enhanced contrast with its background 67 of 100 View Rule
SIA-R73: Text spacing can be adjusted without loss of content 51 of 100 View Rule
SIA-R57: Landmarks don’t repeat the same content 45 of 100 View Rule
SIA-R56: Landmarks with the same role are distinguishable 40 of 100 View Rule
SIA-R53: Headings follow a logical hierarchy 35 of 100 View Rule
SIA-R14: Images have an accessible name or are decorative 33 of 100 View Rule
SIA-R69: Text has sufficient contrast with its background 33 of 100 View Rule
SIA-R68: Accessible name contains the visible label text 31 of 100 View Rule
SIA-R61 30 of 100 View Rule

💡 Tip: Click on the rule documentation links to learn how to fix each issue.

🔧 Priority: Most Common Issues (axe)

These axe accessibility issues appear most frequently across your pages:

Rule Pages Affected Documentation
region 66 of 100 View Rule
landmark-unique 37 of 100 View Rule
heading-order 36 of 100 View Rule
landmark-one-main 26 of 100 View Rule
color-contrast 23 of 100 View Rule
aria-required-children 22 of 100 View Rule
aria-valid-attr-value 22 of 100 View Rule
link-name 21 of 100 View Rule
aria-required-parent 20 of 100 View Rule
html-has-lang 18 of 100 View Rule

💡 Tip: Click on the rule documentation links to learn how to fix each issue. Consider fixing the most common issues first for maximum impact.

🤖 Future Enhancement: This report will soon include AI-powered fix suggestions for authenticated GitHub users (opt-in only, no auto-run AI).

🔍 Cross-Page Patterns: Common HTML Issues

These HTML patterns cause the same accessibility errors across multiple pages. Fix the pattern once in your codebase to fix it everywhere!

🎯 Top Patterns to Fix (Highest Impact)

Pattern 1: Affects 27 page(s) - 27 occurrence(s)

Scanner: axe Rule: landmark-unique Impact: moderate Issue: Landmarks should have a unique role or role/label/title (i.e. accessible name) combination

HTML Pattern:

<nav class="widgetGraphicLinksNav" aria-label="Graphic links">

XPath (use in browser DevTools):

.cpGrid3.widgetBody.cpGrid > .widgetGraphicLinksNav[aria-label="Graphic links"]

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('.cpGrid3.widgetBody.cpGrid > .widgetGraphicLinksNav[aria-label="Graphic links"]')
  5. The element will be highlighted

Affected Pages:


Pattern 2: Affects 18 page(s) - 18 occurrence(s)

Scanner: axe Rule: region Impact: moderate Issue: All page content should be contained by landmarks

HTML Pattern:

<div tabindex="0" class="cp-miniCalendar-title">February 2026</div>

XPath (use in browser DevTools):

.cp-miniCalendar-title

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('.cp-miniCalendar-title')
  5. The element will be highlighted

Affected Pages:


Pattern 3: Affects 15 page(s) - 19 occurrence(s)

Scanner: axe Rule: region Impact: moderate Issue: All page content should be contained by landmarks

HTML Pattern:

<ol class="tabbedWidget cpTabs  " style="display: table;">

XPath (use in browser DevTools):

.tabbedWidget.cpTabs

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('.tabbedWidget.cpTabs')
  5. The element will be highlighted

Affected Pages:


Pattern 4: Affects 14 page(s) - 40 occurrence(s)

Scanner: ALFA Rule: SIA-R73: Text spacing can be adjusted without loss of content Issue: The line height of the paragraph is less than 1.5

HTML Pattern:

<p>...</p>

XPath (use in browser DevTools):

/p

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('/p')
  5. The element will be highlighted

Affected Pages:


Pattern 5: Affects 14 page(s) - 14 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size

HTML Pattern:

<a class="widgetDesc widgetQuickLinksLink" href="/" target="_self">Home</a>

XPath (use in browser DevTools):

/a[@class="widgetDesc widgetQuickLinksLink"]

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('/a[@class="widgetDesc widgetQuickLinksLink"]')
  5. The element will be highlighted

Affected Pages:


Pattern 6: Affects 14 page(s) - 14 occurrence(s)

Scanner: ALFA Rule: SIA-R4: Page has a descriptive title Issue: The lang attribute is either missing, empty, or only whitespace

HTML Pattern:

<html>...</html>

XPath (use in browser DevTools):

/html

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('/html')
  5. The element will be highlighted

Affected Pages:


Pattern 7: Affects 13 page(s) - 13 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size

HTML Pattern:

<a class="widgetDesc widgetQuickLinksLink" href="/sitemap" target="_self">Site Map</a>

XPath (use in browser DevTools):

/a[@class="widgetDesc widgetQuickLinksLink"]

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('/a[@class="widgetDesc widgetQuickLinksLink"]')
  5. The element will be highlighted

Affected Pages:


Pattern 8: Affects 13 page(s) - 13 occurrence(s)

Scanner: axe Rule: region Impact: moderate Issue: All page content should be contained by landmarks

HTML Pattern:

<p class="widgetItem">There are no published events in current month.</p>

XPath (use in browser DevTools):

div[data-event-list-row="true"] > p

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('div[data-event-list-row="true"] > p')
  5. The element will be highlighted

Affected Pages:


Pattern 9: Affects 13 page(s) - 13 occurrence(s)

Scanner: ALFA Rule: SIA-R80: ASCII art has a text alternative Issue: The line height is specified using an absolute unit

HTML Pattern:

<p class="dropdown">...</p>

XPath (use in browser DevTools):

/p[@class="dropdown"]

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('/p[@class="dropdown"]')
  5. The element will be highlighted

Affected Pages:


Pattern 10: Affects 13 page(s) - 13 occurrence(s)

Scanner: axe Rule: region Impact: moderate Issue: All page content should be contained by landmarks

HTML Pattern:

<div class="cpToolbar user public" style="z-index: 1;">

XPath (use in browser DevTools):

.cpToolbar

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('.cpToolbar')
  5. The element will be highlighted

Affected Pages:


Pattern 11: Affects 13 page(s) - 13 occurrence(s)

Scanner: axe Rule: region Impact: moderate Issue: All page content should be contained by landmarks

HTML Pattern:

<span class="cpBylineTextTS">Government Websites by <a href="https://connect.civicplus.com/referral">CivicPlus®</a></span>

XPath (use in browser DevTools):

.cpBylineTextTS

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('.cpBylineTextTS')
  5. The element will be highlighted

Affected Pages:


Pattern 12: Affects 13 page(s) - 13 occurrence(s)

Scanner: axe Rule: region Impact: moderate Issue: All page content should be contained by landmarks

HTML Pattern:

<h1>Access Denied</h1>

XPath (use in browser DevTools):

h1

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('h1')
  5. The element will be highlighted

Affected Pages:


Pattern 13: Affects 11 page(s) - 11 occurrence(s)

Scanner: ALFA Rule: SIA-R111: Interactive elements have a sufficient target size Issue: Target has insufficient size

HTML Pattern:

<a class="widgetDesc widgetQuickLinksLink" href="/site/copyright" target="_self">Copyright Notices</a>

XPath (use in browser DevTools):

/a[@class="widgetDesc widgetQuickLinksLink"]

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('/a[@class="widgetDesc widgetQuickLinksLink"]')
  5. The element will be highlighted

Affected Pages:


Pattern 14: Affects 11 page(s) - 11 occurrence(s)

Scanner: axe Rule: html-has-lang Impact: serious Issue: <html> element must have a lang attribute

HTML Pattern:

<html>

XPath (use in browser DevTools):

html

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('html')
  5. The element will be highlighted

Affected Pages:


Pattern 15: Affects 11 page(s) - 11 occurrence(s)

Scanner: axe Rule: landmark-one-main Impact: moderate Issue: Document should have one main landmark

HTML Pattern:

<html>

XPath (use in browser DevTools):

html

How to Replicate:

  1. Open any affected page in your browser
  2. Press F12 to open DevTools
  3. Go to Console tab
  4. Run: $x('html')
  5. The element will be highlighted

Affected Pages:


💡 Pro Tip: These patterns likely come from shared components or templates in your codebase. Fix them in the component/template source, and the fix will propagate to all affected pages.

📊 Detailed Results

Complete scan results for all tested pages:

Submitted URL Final URL Status HTTP Redirected Time (ms) axe Unique ALFA Unique Equal Access Unique AccessLint Unique Duplicates Notes
http://www.santa-clarita.com/ https://santaclarita.gov/ OK 200 yes 18814 75 24 85 56 240 Home - City of Santa Clarita
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R14 (Images have an accessible name or are decorative), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: aria-allowed-role, color-contrast, heading-order, image-alt, link-name, region  
                    Equal Access failed rules: a_text_purpose, aria_attribute_valid, aria_banner_label_unique, aria_content_in_landmark, aria_contentinfo_misuse, aria_role_valid, element_tabbable_unobscured, element_tabbable_visible, figure_label_exists, frame_src_valid, frame_title_exists, html_lang_exists, html_skipnav_exists, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, widget_tabbable_exists  
                    AccessLint failed rules: aria/aria-allowed-role, aria/aria-valid-attr-value, distinguishable/color-contrast, labels-and-names/label-content-mismatch, landmarks/landmark-main, landmarks/no-duplicate-banner, landmarks/region, navigable/empty-heading, navigable/heading-order, navigable/link-name, navigable/page-has-heading-one, navigable/skip-link, text-alternatives/img-alt  
https://www.brla.gov/ https://www.brla.gov/ OK 200 no 23158 11 34 98 20 128 Baton Rouge, LA | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R72, SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R85  
                    axe failed rules: color-contrast, heading-order, landmark-unique, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_region_label_unique, aria_role_redundant, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, target_spacing_sufficient, text_block_heading, widget_tabbable_exists, widget_tabbable_single  
                    AccessLint failed rules: distinguishable/color-contrast, keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order  
http://www.hialeahfl.gov/ http://www.hialeahfl.gov/ OK 200 no 19389 19 15 67 20 102 Hialeah, FL | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R18 (ARIA states are consistent with element semantics), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, heading-order, landmark-unique, region  
                    Equal Access failed rules: aria_attribute_deprecated, aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, text_sensory_misuse, widget_tabbable_single  
                    AccessLint failed rules: aria/aria-prohibited-attr, keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order, text-alternatives/image-alt-words  
https://www.ci.san-bernardino.ca.us/ https://www.sanbernardino.gov/ OK 200 yes 32374 18 31 113 25 375 San Bernardino, CA | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R14 (Images have an accessible name or are decorative), SIA-R18 (ARIA states are consistent with element semantics), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R83 (Text can be resized to 200% without loss of content)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, heading-order, landmark-unique, region  
                    Equal Access failed rules: aria_attribute_deprecated, aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, widget_tabbable_exists, widget_tabbable_single  
                    AccessLint failed rules: aria/aria-prohibited-attr, keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order  
https://www.cityoftacoma.org/ https://tacoma.gov/ OK 200 yes 21970 5 11 66 14 87 City of Tacoma, Washington - Official Government Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R75, SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: image-redundant-alt  
                    Equal Access failed rules: aria_attribute_redundant, aria_content_in_landmark, aria_role_redundant, caption_track_exists, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, media_keyboard_controllable, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, svg_graphics_labelled, target_spacing_sufficient, text_block_heading  
                    AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/label-content-mismatch, text-alternatives/image-alt-words, text-alternatives/image-redundant-alt  
http://www.modestogov.com/ https://www.modestogov.com/ OK 200 yes 35011 21 19 114 31 361 Modesto, CA | Official Website
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R12 (Links have an accessible name), SIA-R13, SIA-R14 (Images have an accessible name or are decorative), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background)  
                    axe failed rules: button-name, frame-title, heading-order, landmark-no-duplicate-banner, landmark-unique, link-name, list, listitem, region  
                    Equal Access failed rules: a_text_purpose, aria_banner_label_unique, aria_content_in_landmark, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_region_label_unique, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, frame_src_valid, frame_title_exists, input_label_exists, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, widget_tabbable_exists, widget_tabbable_single  
                    AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/button-name, labels-and-names/duplicate-id-aria, labels-and-names/frame-title, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/no-duplicate-banner, landmarks/region, navigable/heading-order, navigable/link-name, text-alternatives/image-alt-words  
http://www.townofbabylon.com/ https://www.townofbabylonny.gov/ OK 200 yes 35131 26 35 86 26 350 Babylon, NY - Official Website | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R13, SIA-R14 (Images have an accessible name or are decorative), SIA-R18 (ARIA states are consistent with element semantics), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, frame-title, heading-order, landmark-unique, region  
                    Equal Access failed rules: aria_attribute_deprecated, aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, frame_title_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: aria/aria-prohibited-attr, keyboard-accessible/focus-order, labels-and-names/frame-title, labels-and-names/label-content-mismatch, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order  
https://www.huntsvilleal.gov/ https://www.huntsvilleal.gov/ OK 200 no 14515 6 23 78 14 125 City of Huntsville - Official website of the City of Huntsville, Alabama
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R78 (Headings of same level have text content between them), SIA-R8 (Form elements have accessible labels), SIA-R80 (ASCII art has a text alternative), SIA-R85  
                    axe failed rules: color-contrast, heading-order, landmark-unique, page-has-heading-one, region  
                    Equal Access failed rules: a_text_purpose, aria_content_in_landmark, aria_eventhandler_role_valid, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, frame_src_valid, frame_title_exists, html_lang_exists, html_skipnav_exists, label_ref_valid, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: distinguishable/color-contrast, labels-and-names/duplicate-id-aria, landmarks/landmark-unique, navigable/heading-order, navigable/page-has-heading-one, text-alternatives/image-alt-words, text-alternatives/image-redundant-alt  
https://www.dsm.city/ https://www.dsm.city/ OK 200 no 14532 9 28 91 61 57 City of Des Moines
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R17, SIA-R3 (lang attribute has a valid language code), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: aria-hidden-focus  
                    Equal Access failed rules: aria_content_in_landmark, aria_hidden_nontabbable, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, text_sensory_misuse, widget_tabbable_exists  
                    AccessLint failed rules: adaptable/list-children, adaptable/listitem-parent, aria/aria-hidden-focus, labels-and-names/label-content-mismatch, landmarks/region  
http://www.yonkersny.gov/ https://www.yonkersny.gov/ OK 200 yes 30708 28 25 298 23 260 Yonkers, NY | Official Website
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R13, SIA-R14 (Images have an accessible name or are decorative), SIA-R18 (ARIA states are consistent with element semantics), SIA-R3 (lang attribute has a valid language code), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background), SIA-R74  
                    axe failed rules: aria-allowed-attr, aria-required-children, aria-required-parent, aria-valid-attr-value, color-contrast, frame-title, heading-order, landmark-unique, link-name, region  
                    Equal Access failed rules: a_text_purpose, aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, caption_track_exists, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, frame_src_valid, frame_title_exists, html_skipnav_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, media_keyboard_controllable, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_quoted_correctly, widget_tabbable_exists, widget_tabbable_single  
                    AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/frame-title, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order, navigable/link-name  
https://www.cityofrochester.gov/ https://www.cityofrochester.gov/ OK 200 no 22704 0 21 73 20 69 Homepage | City of Rochester, New York
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background)  
                    Equal Access failed rules: aria_child_tabbable, aria_complementary_label_visible, aria_content_in_landmark, aria_descendant_valid, aria_id_unique, aria_keyboard_handler_exists, aria_role_redundant, aria_widget_labelled, element_attribute_deprecated, element_id_unique, element_tabbable_visible, heading_content_exists, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading, text_contrast_sufficient, text_sensory_misuse, widget_tabbable_exists, widget_tabbable_single  
                    AccessLint failed rules: adaptable/list-children, navigable/empty-heading, navigable/page-has-heading-one, text-alternatives/image-alt-words  
http://www.moval.org/ http://www.moval.org/ OK 200 no 17867 22 10 42 10 73 City of Moreno Valley, California
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R53 (Headings follow a logical hierarchy), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: color-contrast, heading-order, label-title-only, link-name, scope-attr-valid  
                    Equal Access failed rules: a_text_purpose, aria_hidden_nontabbable, element_attribute_deprecated, element_tabbable_visible, frame_src_valid, html_skipnav_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, table_headers_exists, table_headers_related, table_scope_valid, text_block_heading, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, labels-and-names/label-title-only, landmarks/region, navigable/heading-order, navigable/link-name, navigable/page-has-heading-one  
http://www.ci.fayetteville.nc.us/ https://www.fayettevillenc.gov/ FAIL 403 yes 2880 5 3 3 5 1 Access Denied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.fontanaca.gov/ https://www.fontanaca.gov/ OK 200 no 20996 11 19 135 26 140 Fontana, CA - Official Website | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R18 (ARIA states are consistent with element semantics), SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background)  
                    axe failed rules: heading-order, landmark-unique, region  
                    Equal Access failed rules: aria_attribute_deprecated, aria_child_valid, aria_content_in_landmark, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_region_label_unique, aria_role_redundant, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, frame_src_valid, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: aria/aria-prohibited-attr, keyboard-accessible/focus-order, labels-and-names/label-content-mismatch, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order  
https://www.columbusga.org/ https://www.columbusga.gov/ OK 200 yes 19670 45 12 97 61 116 Columbus Consolidated Government | Home
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R13, SIA-R2 (HTML elements have a valid lang attribute), SIA-R53 (Headings follow a logical hierarchy), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: aria-required-parent, button-name, color-contrast, heading-order, image-alt, link-name  
                    Equal Access failed rules: a_text_purpose, element_attribute_deprecated, frame_src_valid, frame_title_exists, html_lang_exists, html_skipnav_exists, img_alt_valid, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: adaptable/aria-required-parent, distinguishable/color-contrast, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/button-name, navigable/heading-order, navigable/link-name, text-alternatives/img-alt  
https://www.worcesterma.gov/ https://www.worcesterma.gov/ OK 200 no 16895 1 25 34 0 78 Home | City of Worcester
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background)  
                    axe failed rules: landmark-unique  
                    Equal Access failed rules: aria_complementary_labelled, aria_content_in_landmark, aria_landmark_name_unique, aria_navigation_label_unique, aria_role_redundant, aria_role_valid, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, img_alt_misuse, input_label_visible, style_color_misuse, style_highcontrast_visible, style_viewport_resizable, text_block_heading, text_contrast_sufficient, text_quoted_correctly, text_sensory_misuse  
https://www.cityofpsl.com/ https://www.cityofpsl.com/Home OK 200 yes 14040 0 4 11 1 9 Home | City of Port St. Lucie, FL
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R66 (Text has enhanced contrast with its background)  
                    Equal Access failed rules: aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, element_attribute_deprecated, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: landmarks/region  
https://littlerock.gov/ https://littlerock.gov/ OK 200 no 15777 35 32 96 43 94 Home - City of Little Rock
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R64, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R72, SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74  
                    axe failed rules: color-contrast, empty-heading, heading-order, landmark-complementary-is-top-level, link-name  
                    Equal Access failed rules: a_text_purpose, aria_accessiblename_exists, caption_track_exists, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, figure_label_exists, heading_content_exists, input_label_visible, media_keyboard_controllable, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: aria/aria-prohibited-attr, distinguishable/color-contrast, distinguishable/link-in-text-block, landmarks/complementary-is-top-level, navigable/empty-heading, navigable/heading-order, navigable/link-name  
https://www.augustaga.gov/ https://www.augustaga.gov/ OK 200 no 35515 15 10 95 24 310 Augusta, GA - Official Website | Official Website
                    ALFA failed rules: SIA-R12 (Links have an accessible name), SIA-R14 (Images have an accessible name or are decorative), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R68 (Accessible name contains the visible label text), SIA-R85  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, heading-order, landmark-unique, region  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, caption_track_exists, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, frame_src_valid, html_skipnav_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, media_keyboard_controllable, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, widget_tabbable_single  
                    AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order  
https://oxnard.gov/ https://oxnard.gov/ FAIL 403 no 6527 4 3 17 3 1 Just a moment…
                    ALFA failed rules: SIA-R74, SIA-R78 (Headings of same level have text content between them), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, element_attribute_deprecated, element_tabbable_unobscured, frame_src_valid, frame_title_exists, html_lang_exists, html_skipnav_exists, skip_main_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_sensory_misuse  
                    AccessLint failed rules: distinguishable/link-in-text-block, landmarks/landmark-main, landmarks/region  
https://www.birminghamal.gov/ https://www.birminghamal.gov/ OK 200 no 11789 1 12 44 4 52 Homepage | City of Birmingham, Alabama
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: page-has-heading-one  
                    Equal Access failed rules: aria_content_in_landmark, element_attribute_deprecated, element_tabbable_unobscured, heading_markup_misuse, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_sensory_misuse  
                    AccessLint failed rules: labels-and-names/label-content-mismatch  
https://montgomeryal.gov/ http://www.montgomeryal.gov/ FAIL 403 yes 2453 5 3 3 5 1 Access Denied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
http://www.friscotexas.gov/ https://www.friscotexas.gov/ OK 200 yes 20102 13 17 76 22 99 Frisco, TX - Official Website | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R18 (ARIA states are consistent with element semantics), SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: heading-order, landmark-unique, region  
                    Equal Access failed rules: aria_attribute_deprecated, aria_content_in_landmark, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_region_label_unique, aria_role_redundant, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, widget_tabbable_exists, widget_tabbable_single  
                    AccessLint failed rules: aria/aria-prohibited-attr, keyboard-accessible/focus-order, labels-and-names/label-content-mismatch, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order, text-alternatives/image-alt-words  
https://www.amarillo.gov/ https://www.amarillo.gov/ OK 200 no 28298 14 25 51 22 175 - City of Amarillo
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R18 (ARIA states are consistent with element semantics), SIA-R3 (lang attribute has a valid language code), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R78 (Headings of same level have text content between them), SIA-R85  
                    axe failed rules: color-contrast, link-name, scrollable-region-focusable  
                    Equal Access failed rules: a_text_purpose, aria_attribute_valid, aria_content_in_landmark, aria_keyboard_handler_exists, aria_role_redundant, aria_role_valid, caption_track_exists, combobox_popup_reference, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, figure_label_exists, input_label_visible, media_keyboard_controllable, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_contrast_sufficient, widget_tabbable_exists  
                    AccessLint failed rules: aria/aria-allowed-role, distinguishable/color-contrast, keyboard-accessible/scrollable-region, landmarks/landmark-unique, navigable/link-name  
https://www.slc.gov/ https://www.slc.gov/ OK 200 no 16775 10 8 108 10 30 SLC.gov
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R2 (HTML elements have a valid lang attribute), SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R66 (Text has enhanced contrast with its background), SIA-R83 (Text can be resized to 200% without loss of content)  
                    axe failed rules: heading-order, image-alt, label-title-only, landmark-unique  
                    Equal Access failed rules: aria_content_in_landmark, aria_form_label_unique, aria_navigation_label_unique, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, img_alt_valid, page_title_valid, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_sensory_misuse  
                    AccessLint failed rules: labels-and-names/label-title-only, navigable/empty-heading, navigable/heading-order, text-alternatives/img-alt  
https://grandrapidsmi.gov/ https://www.grandrapidsmi.gov/Home OK 200 yes 10093 1 14 15 5 42 Home
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: color-contrast  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, element_attribute_deprecated, element_tabbable_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: distinguishable/color-contrast, landmarks/region  
http://www.huntingtonbeachca.gov/ https://www.huntingtonbeachca.gov/ OK 200 yes 15243 17 21 74 38 80 Welcome to Huntington Beach, CA
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R17, SIA-R18 (ARIA states are consistent with element semantics), SIA-R3 (lang attribute has a valid language code), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R83 (Text can be resized to 200% without loss of content)  
                    axe failed rules: aria-prohibited-attr, button-name, color-contrast, region  
                    Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_role_redundant, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, input_label_exists, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, widget_tabbable_exists  
                    AccessLint failed rules: adaptable/list-children, aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/button-name, landmarks/region, text-alternatives/image-redundant-alt  
https://www.opkansas.org/ https://www.opkansas.org/ OK 200 no 17183 27 15 38 42 275 Home - City of Overland Park, Kansas
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background)  
                    axe failed rules: aria-hidden-focus, heading-order, landmark-one-main, landmark-unique, link-name, region  
                    Equal Access failed rules: a_text_purpose, aria_content_in_landmark, aria_contentinfo_misuse, aria_id_unique, element_attribute_deprecated, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: aria/aria-hidden-focus, aria/aria-valid-attr-value, landmarks/landmark-main, navigable/heading-order, navigable/link-name  
https://www.glendaleca.gov/ https://www.glendaleca.gov/ FAIL 403 no 2305 5 3 3 5 1 Access Denied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
http://www.talgov.com/ https://www.talgov.com/Main/Home OK 200 yes 14790 3 17 50 3 57 Talgov.com | The Official Website of the City of Tallahassee
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R70, SIA-R74  
                    axe failed rules: landmark-unique, page-has-heading-one, region  
                    Equal Access failed rules: aria_eventhandler_role_valid, aria_navigation_label_unique, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, script_onclick_misuse, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, widget_tabbable_exists  
                    AccessLint failed rules: distinguishable/link-in-text-block, keyboard-accessible/focus-order  
http://www.gptx.org/ https://www.gptx.org/Home OK 200 yes 16548 2 9 36 10 31 Home - City of Grand Prairie
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R78 (Headings of same level have text content between them), SIA-R83 (Text can be resized to 200% without loss of content)  
                    axe failed rules: aria-allowed-role, aria-valid-attr-value  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_eventhandler_role_valid, aria_id_unique, aria_keyboard_handler_exists, aria_role_valid, aria_widget_labelled, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_sensory_misuse  
                    AccessLint failed rules: aria/aria-allowed-role, aria/aria-hidden-focus, landmarks/region  
https://www.mckinneytexas.org/ https://www.mckinneytexas.org/ OK 200 no 27185 17 24 72 21 426 McKinney, TX - Official Website | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R14 (Images have an accessible name or are decorative), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background), SIA-R72  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, heading-order, landmark-unique, page-has-heading-one, region  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_hidden_nontabbable, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_widget_labelled, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, frame_src_valid, html_skipnav_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order, navigable/page-has-heading-one  
http://www.capecoral.net/ http://www.capecoral.net/ FAIL 500 no 2799 4 3 8 4 0 500 - Internal server error.
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R78 (Headings of same level have text content between them), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, element_attribute_deprecated, fieldset_legend_valid, html_lang_exists, skip_main_exists, style_color_misuse, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.siouxfalls.gov/ https://www.siouxfalls.gov/home OK 200 yes 13198 2 10 30 5 28 Home - City of Sioux Falls
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R78 (Headings of same level have text content between them), SIA-R83 (Text can be resized to 200% without loss of content)  
                    axe failed rules: heading-order, landmark-unique  
                    Equal Access failed rules: aria_content_in_landmark, aria_id_unique, aria_region_label_unique, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, frame_src_valid, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/color-contrast, landmarks/landmark-unique, landmarks/region, navigable/heading-order  
http://www.peoriaaz.gov/ http://www.peoriaaz.gov/ FAIL 403 no 3398 1 2 6 2 0 Just a moment…
                    ALFA failed rules: SIA-R9, SIA-R96  
                    axe failed rules: meta-refresh  
                    Equal Access failed rules: element_attribute_deprecated, meta_refresh_delay, style_color_misuse, style_highcontrast_visible  
                    AccessLint failed rules: enough-time/meta-refresh, enough-time/meta-refresh-no-exception  
https://www.providenceri.gov/ https://www.providenceri.gov/ OK 200 no 9862 7 12 59 10 46 City of Providence Home - City of Providence
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R3 (lang attribute has a valid language code), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: region  
                    Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_sensory_misuse  
                    AccessLint failed rules: labels-and-names/label-content-mismatch, landmarks/region  
https://www.cityofvancouver.us/ https://www.cityofvancouver.us/ OK 200 no 14496 37 12 68 19 151 City of Vancouver, WA -The City of Vancouver, WA
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R57 (Landmarks don’t repeat the same content), SIA-R74, SIA-R78 (Headings of same level have text content between them), SIA-R80 (ASCII art has a text alternative), SIA-R86 (Page has a mechanism to bypass repeated blocks of content)  
                    axe failed rules: landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_contentinfo_misuse, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, frame_src_valid, input_label_visible, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, target_spacing_sufficient, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/frame-title-unique, labels-and-names/label-content-mismatch, landmarks/landmark-main, landmarks/region, navigable/skip-link  
https://www.knoxvilletn.gov/ https://www.knoxvilletn.gov/ OK 200 no 17242 18 10 49 14 12 Home - City of Knoxville
                    ALFA failed rules: SIA-R110, SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R18 (ARIA states are consistent with element semantics), SIA-R21, SIA-R3 (lang attribute has a valid language code), SIA-R47, SIA-R59, SIA-R66 (Text has enhanced contrast with its background)  
                    axe failed rules: aria-prohibited-attr, aria-roles, link-name, list, meta-viewport, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_eventhandler_role_valid, aria_form_label_unique, aria_hidden_nontabbable, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, frame_src_valid, html_skipnav_exists, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: adaptable/list-children, aria/aria-roles, distinguishable/meta-viewport, keyboard-accessible/focus-order, landmarks/landmark-main, landmarks/region, navigable/link-name, navigable/page-has-heading-one  
https://www.akronohio.gov/ https://www.akronohio.gov/ OK 200 no 40317 352 355 841 361 413 Akron, OH
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R12 (Links have an accessible name), SIA-R14 (Images have an accessible name or are decorative), SIA-R17, SIA-R18 (ARIA states are consistent with element semantics), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R57 (Landmarks don’t repeat the same content), SIA-R64, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R78 (Headings of same level have text content between them), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: aria-hidden-focus, aria-prohibited-attr, button-name, color-contrast, empty-heading, heading-order, image-alt, listitem, region  
                    Equal Access failed rules: aria_accessiblename_exists, aria_attribute_redundant, aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_form_label_unique, aria_hidden_nontabbable, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_interaction_review, form_submit_button_exists, frame_src_valid, heading_content_exists, heading_markup_misuse, img_alt_valid, input_label_exists, input_label_visible, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, table_headers_exists, table_headers_related, text_block_heading, text_contrast_sufficient, text_quoted_correctly, text_sensory_misuse, widget_tabbable_exists  
                    AccessLint failed rules: adaptable/list-children, adaptable/listitem-parent, aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/button-name, labels-and-names/duplicate-id-aria, landmarks/region, navigable/empty-heading, navigable/heading-order, text-alternatives/image-alt-words, text-alternatives/img-alt  
https://www.shreveportla.gov/ https://www.shreveportla.gov/ OK 200 no 20449 30 16 79 28 110 Shreveport, LA - Official Website | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background), SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, color-contrast, heading-order, landmark-unique, region  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: distinguishable/color-contrast, keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order  
https://cityofmobile.org/ https://www.cityofmobile.org/ OK 200 yes 15609 7 26 30 6 144 City of Mobile
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R13, SIA-R3 (lang attribute has a valid language code), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R72, SIA-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: frame-title, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_contentinfo_misuse, element_attribute_deprecated, element_tabbable_visible, frame_title_exists, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: labels-and-names/duplicate-id-aria, labels-and-names/frame-title, landmarks/landmark-main, landmarks/region, navigable/heading-order  
http://www.cob.us/ http://www.cob.us/ FAIL - no 36 0 0 0 0 0 fetch failed
https://www.nnva.gov/ https://www.nnva.gov/ OK 200 no 21813 26 39 71 20 229 Newport News, VA - Official Website | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R18 (ARIA states are consistent with element semantics), SIA-R42, SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R85  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, landmark-no-duplicate-contentinfo, landmark-unique, page-has-heading-one, region  
                    Equal Access failed rules: aria_attribute_deprecated, aria_child_valid, aria_content_in_landmark, aria_contentinfo_label_unique, aria_contentinfo_single, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, widget_tabbable_single  
                    AccessLint failed rules: aria/aria-prohibited-attr, keyboard-accessible/focus-order, labels-and-names/label-content-mismatch, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/no-duplicate-contentinfo, landmarks/region, navigable/page-has-heading-one  
https://www.fortlauderdale.gov/ https://www.fortlauderdale.gov/ FAIL 403 no 2656 5 3 3 5 1 Access Denied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.chattanooga.gov/ https://chattanooga.gov/ OK 200 yes 13775 0 25 67 11 43 Welcome to Chattanooga.gov
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R18 (ARIA states are consistent with element semantics), SIA-R3 (lang attribute has a valid language code), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R83 (Text can be resized to 200% without loss of content), SIA-R86 (Page has a mechanism to bypass repeated blocks of content)  
                    Equal Access failed rules: aria_content_in_landmark, aria_form_label_unique, aria_id_unique, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, figure_label_exists, frame_src_valid, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/label-content-mismatch  
https://www.tempe.gov/ https://www.tempe.gov/ FAIL 403 no 2698 5 3 3 5 1 Access Denied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.aurora-il.org/ https://www.aurora.il.us/Home OK 200 yes 12057 2 8 31 7 27 Home | City of Aurora, IL
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: aria-allowed-role, aria-valid-attr-value  
                    Equal Access failed rules: aria_child_tabbable, aria_child_valid, aria_content_in_landmark, aria_eventhandler_role_valid, aria_hidden_nontabbable, aria_id_unique, aria_keyboard_handler_exists, aria_role_valid, aria_widget_labelled, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_sensory_misuse, widget_tabbable_exists  
                    AccessLint failed rules: aria/aria-allowed-role, aria/aria-hidden-focus, landmarks/region  
http://ci.santa-rosa.ca.us/ http://ci.santa-rosa.ca.us/ FAIL 403 no 5816 4 0 3 4 0 No request found in response
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.eugene-or.gov/ https://www.eugene-or.gov/ OK 200 no 27744 30 17 93 14 384 Eugene, OR Website | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R14 (Images have an accessible name or are decorative), SIA-R18 (ARIA states are consistent with element semantics), SIA-R42, SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, landmark-unique, page-has-heading-one, region  
                    Equal Access failed rules: aria_attribute_deprecated, aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, text_quoted_correctly, widget_tabbable_single  
                    AccessLint failed rules: aria/aria-prohibited-attr, keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/page-has-heading-one  
http://www.elkgrovecity.org/ https://elkgrove.gov/ FAIL 403 yes 3332 4 3 11 3 0 Just a moment…
                    ALFA failed rules: SIA-R74, SIA-R78 (Headings of same level have text content between them), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, element_attribute_deprecated, skip_main_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_sensory_misuse  
                    AccessLint failed rules: distinguishable/link-in-text-block, landmarks/landmark-main, landmarks/region  
https://www.cityofsalem.net/ https://www.cityofsalem.net/ FAIL 403 no 2681 5 3 3 5 1 Access Denied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.ontarioca.gov/ https://www.ontarioca.gov/ OK 200 no 11440 0 20 30 0 70 Homepage | City of Ontario, California
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content)  
                    Equal Access failed rules: aria_content_in_landmark, element_tabbable_role_valid, element_tabbable_unobscured, heading_markup_misuse, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading  
https://www.carync.gov/ https://www.carync.gov/ FAIL 403 no 2696 5 3 3 5 1 Access Denied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
http://www.cityofrc.us/ https://www.cityofrc.us/ OK 200 yes 25769 5 66 191 3 201 Home | City of Rancho Cucamonga
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R14 (Images have an accessible name or are decorative), SIA-R3 (lang attribute has a valid language code), SIA-R40, SIA-R56 (Landmarks with the same role are distinguishable), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: aria-allowed-role, landmark-one-main  
                    Equal Access failed rules: aria_content_in_landmark, aria_contentinfo_misuse, aria_form_label_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_region_labelled, aria_role_redundant, aria_role_valid, aria_widget_labelled, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, target_spacing_sufficient, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/color-contrast, text-alternatives/image-alt-words  
https://www.ci.oceanside.ca.us/ https://www.ci.oceanside.ca.us/ FAIL 403 no 6371 5 3 3 5 1 Access Denied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.cityoflancasterca.org/ https://www.cityoflancasterca.org/ FAIL 403 no 2513 5 3 3 5 1 Access Denied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://ggcity.org/ https://ggcity.org/ OK 200 no 17001 8 8 62 6 47 Home | City of Garden Grove
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R66 (Text has enhanced contrast with its background), SIA-R78 (Headings of same level have text content between them), SIA-R85  
                    axe failed rules: button-name, landmark-banner-is-top-level, landmark-no-duplicate-banner, link-name  
                    Equal Access failed rules: a_text_purpose, aria_attribute_valid, aria_id_unique, aria_keyboard_handler_exists, aria_role_redundant, element_attribute_deprecated, element_tabbable_visible, frame_src_valid, input_label_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, svg_graphics_labelled, text_block_heading, widget_tabbable_single  
                    AccessLint failed rules: labels-and-names/button-name, labels-and-names/form-label, labels-and-names/label-content-mismatch, landmarks/no-duplicate-banner, navigable/skip-link  
http://www.ppines.com/ https://www.ppines.com/ OK 200 yes 31451 22 25 86 19 320 Pembroke Pines, FL - Official Website | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R14 (Images have an accessible name or are decorative), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R72, SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, heading-order, landmark-unique, region  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, frame_src_valid, input_label_before, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/frame-title-unique, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order  
https://www.fcgov.com/ https://www.fortcollins.gov/Home OK 200 yes 12756 0 5 15 2 22 Home City of Fort Collins
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R68 (Accessible name contains the visible label text), SIA-R78 (Headings of same level have text content between them)  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_sensory_misuse  
                    AccessLint failed rules: landmarks/region, navigable/heading-order  
http://www.cityofpalmdale.org/ https://www.cityofpalmdaleca.gov/ OK 200 yes 22673 17 18 80 16 89 Palmdale, CA | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R14 (Images have an accessible name or are decorative), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background), SIA-R72, SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, heading-order, landmark-unique, region  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, caption_track_exists, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, media_keyboard_controllable, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/label-content-mismatch, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order  
https://www.springfieldmo.gov/ https://www.springfieldmo.gov/ OK 200 no 26286 12 36 65 21 120 Springfield, MO - Official Website | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R18 (ARIA states are consistent with element semantics), SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: color-contrast, heading-order, landmark-unique, region  
                    Equal Access failed rules: aria_attribute_deprecated, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_region_label_unique, aria_role_redundant, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, widget_tabbable_exists, widget_tabbable_single  
                    AccessLint failed rules: aria/aria-prohibited-attr, distinguishable/color-contrast, keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order  
http://www.cityofclarksville.com/ https://www.clarksvilletn.gov/ OK 200 yes 35779 28 43 309 31 379 Clarksville, TN | Official Website
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R18 (ARIA states are consistent with element semantics), SIA-R3 (lang attribute has a valid language code), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R80 (ASCII art has a text alternative), SIA-R86 (Page has a mechanism to bypass repeated blocks of content)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, heading-order, image-redundant-alt, landmark-unique, link-name, region  
                    Equal Access failed rules: a_text_purpose, application_content_accessible, aria_application_labelled, aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_descendant_valid, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_role_valid, aria_widget_labelled, draggable_alternative_exists, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, frame_src_valid, img_alt_redundant, input_label_before, input_label_exists, input_label_visible, input_onchange_review, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, text_quoted_correctly, widget_tabbable_single  
                    AccessLint failed rules: keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order, navigable/link-name, text-alternatives/image-redundant-alt  
https://www.cityofsalinas.org/Home https://www.salinas.gov/Home OK 200 yes 13239 2 15 15 7 48 Home - City of Salinas
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R13, SIA-R53 (Headings follow a logical hierarchy), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R78 (Headings of same level have text content between them), SIA-R83 (Text can be resized to 200% without loss of content)  
                    axe failed rules: frame-title, heading-order  
                    Equal Access failed rules: aria_content_in_landmark, aria_eventhandler_role_valid, aria_keyboard_handler_exists, element_attribute_deprecated, element_tabbable_visible, frame_title_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_sensory_misuse  
                    AccessLint failed rules: distinguishable/color-contrast, landmarks/region, navigable/heading-order  
http://www.hayward-ca.gov/ http://www.hayward-ca.gov/ OK 200 no 11985 22 10 51 42 126 City of Hayward - Official website
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R53 (Headings follow a logical hierarchy), SIA-R57 (Landmarks don’t repeat the same content), SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text)  
                    axe failed rules: heading-order, label-title-only, landmark-one-main, link-in-text-block, link-name, list, listitem, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_contentinfo_misuse, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, frame_src_valid, html_lang_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_quoted_correctly, text_sensory_misuse  
                    AccessLint failed rules: adaptable/list-children, adaptable/listitem-parent, distinguishable/link-in-text-block, keyboard-accessible/focus-order, labels-and-names/frame-title, labels-and-names/label-content-mismatch, labels-and-names/label-title-only, landmarks/landmark-main, landmarks/region, navigable/heading-order, navigable/link-name  
https://www.patersonnj.gov/ https://www.patersonnj.gov/ OK 200 no 26940 21 12 33 82 67 Home / Paterson, New Jersey
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R20, SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R70, SIA-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: aria-valid-attr, color-contrast, list, listitem, region  
                    Equal Access failed rules: aria_attribute_allowed, aria_content_in_landmark, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, style_background_decorative, style_color_misuse, style_highcontrast_visible, table_headers_exists, table_headers_related, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: adaptable/list-children, adaptable/listitem-parent, aria/aria-valid-attr, distinguishable/color-contrast, distinguishable/link-in-text-block, landmarks/region, navigable/page-has-heading-one, navigable/skip-link  
https://www.alexandriava.gov/ https://www.alexandriava.gov/ OK 200 no 33064 13 31 258 36 188 Welcome to the City of Alexandria Homepage! | City of Alexandria, VA
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R72, SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: button-name, image-alt, link-name, region  
                    Equal Access failed rules: a_text_purpose, aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, img_alt_valid, input_label_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, table_headers_exists, table_headers_related, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/button-name, labels-and-names/frame-title, landmarks/region, navigable/heading-order, navigable/link-name, text-alternatives/image-alt-words, text-alternatives/img-alt  
https://www.maconbibb.us/ https://www.maconbibb.us/ OK 200 no 26323 32 28 310 21 232 Macon-Bibb County Government
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R2 (HTML elements have a valid lang attribute), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: color-contrast, heading-order, landmark-no-duplicate-banner, landmark-unique, link-name, region  
                    Equal Access failed rules: a_text_purpose, aria_attribute_redundant, aria_banner_label_unique, aria_child_valid, aria_content_in_landmark, aria_contentinfo_misuse, aria_landmark_name_unique, aria_role_valid, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, frame_src_valid, input_label_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, svg_graphics_labelled, table_headers_exists, text_block_heading, text_contrast_sufficient, text_sensory_misuse, widget_tabbable_exists  
                    AccessLint failed rules: adaptable/td-has-header, aria/aria-allowed-role, aria/presentation-role-conflict, keyboard-accessible/focus-order, labels-and-names/frame-title, labels-and-names/frame-title-unique, landmarks/landmark-main, landmarks/no-duplicate-banner, landmarks/region, navigable/heading-order, navigable/link-name, text-alternatives/img-alt  
http://www.ci.corona.ca.us/ http://www.ci.corona.ca.us/ FAIL - no 224 0 0 0 0 0 fetch failed
https://www.wycokck.org/ https://www.wycokck.org/Home OK 200 yes 15739 0 15 17 2 35 Home
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R66 (Text has enhanced contrast with its background), SIA-R72, SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R78 (Headings of same level have text content between them), SIA-R83 (Text can be resized to 200% without loss of content)  
                    Equal Access failed rules: aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_visible, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, target_spacing_sufficient, text_block_heading, text_sensory_misuse  
                    AccessLint failed rules: landmarks/region  
https://www.lakewood.org/ https://www.lakewoodco.gov/Home OK 200 yes 10256 1 9 15 3 24 Home - City of Lakewood, CO
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R53 (Headings follow a logical hierarchy), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: heading-order  
                    Equal Access failed rules: aria_content_in_landmark, aria_eventhandler_role_valid, aria_keyboard_handler_exists, element_attribute_deprecated, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: distinguishable/color-contrast, landmarks/region, navigable/heading-order  
https://www.springfield-ma.gov/ https://www.springfield-ma.gov/cos/ OK 200 yes 10165 44 19 227 11 165 City of Springfield, MA: City of Springfield, MA
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), SIA-R4 (Page has a descriptive title), SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R83 (Text can be resized to 200% without loss of content)  
                    axe failed rules: heading-order, html-has-lang, landmark-banner-is-top-level, landmark-no-duplicate-banner, landmark-one-main, landmark-unique, link-name, region, skip-link  
                    Equal Access failed rules: a_text_purpose, aria_banner_label_unique, aria_content_in_landmark, aria_contentinfo_misuse, aria_eventhandler_role_valid, aria_landmark_name_unique, aria_navigation_label_unique, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, figure_label_exists, form_submit_button_exists, html_lang_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, table_headers_exists, table_headers_related, target_spacing_sufficient, text_block_heading  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/no-duplicate-banner, landmarks/region, navigable/heading-order, navigable/link-name, navigable/skip-link, readable/html-has-lang  
https://sunnyvale.ca.gov/ https://sunnyvale.ca.gov/ FAIL - no 38 0 0 0 0 0 fetch failed
http://www.jacksonms.gov/ https://www.jacksonms.gov/ OK 200 yes 13816 59 15 32 57 231  
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R18 (ARIA states are consistent with element semantics), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: aria-required-children, color-contrast, landmark-one-main, link-name, page-has-heading-one, region, skip-link  
                    Equal Access failed rules: a_text_purpose, aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_contentinfo_misuse, aria_keyboard_handler_exists, element_tabbable_unobscured, element_tabbable_visible, frame_src_valid, html_lang_exists, html_skipnav_exists, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient, widget_tabbable_exists  
                    AccessLint failed rules: adaptable/aria-required-children, distinguishable/color-contrast, landmarks/landmark-main, landmarks/region, navigable/empty-heading, navigable/link-name, navigable/page-has-heading-one, navigable/skip-link  
http://www.ci.killeen.tx.us/ http://www.ci.killeen.tx.us/ OK 200 no 2838 4 0 7 4 0 No request found in response
                    axe failed rules: html-has-lang, landmark-one-main, page-has-heading-one, region  
                    Equal Access failed rules: aria_content_in_landmark, element_attribute_deprecated, html_lang_exists, html_skipnav_exists, skip_main_exists, style_color_misuse, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, navigable/bypass, navigable/page-has-heading-one, readable/html-has-lang  
http://www.hollywoodfl.org/ http://www.hollywoodfl.org/ OK 200 no 21383 26 34 112 18 154 Hollywood, FL - Official Website | Official Website
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R18 (ARIA states are consistent with element semantics), SIA-R3 (lang attribute has a valid language code), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, heading-order, landmark-unique, link-name, region  
                    Equal Access failed rules: a_text_purpose, aria_attribute_deprecated, aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_role_redundant, aria_role_valid, aria_widget_labelled, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, frame_src_valid, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, table_summary_redundant, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: aria/aria-prohibited-attr, keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order, navigable/link-name  
https://www.murfreesborotn.gov/ https://www.murfreesborotn.gov/ OK 200 no 23956 21 17 118 19 127 Murfreesboro, TN - Official Website | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, heading-order, landmark-unique, region  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, frame_src_valid, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, widget_tabbable_single  
                    AccessLint failed rules: keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order  
https://www.pasadenatx.gov/ https://www.pasadenatx.gov/ OK 200 no 14144 8 14 48 13 57 Pasadena, TX | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R70, SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: landmark-complementary-is-top-level, landmark-unique, page-has-heading-one, region  
                    Equal Access failed rules: aria_complementary_labelled, aria_content_in_landmark, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_region_label_unique, aria_role_redundant, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_before, input_onchange_review, style_color_misuse, style_focus_visible, style_highcontrast_visible, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, widget_tabbable_exists, widget_tabbable_single  
                    AccessLint failed rules: distinguishable/color-contrast, keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/page-has-heading-one  
https://bellevuewa.gov/ https://bellevuewa.gov/ OK 200 no 15447 37 24 52 30 168 Home | City of Bellevue
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R42, SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R83 (Text can be resized to 200% without loss of content)  
                    axe failed rules: aria-allowed-role, aria-required-children, color-contrast, label-title-only, landmark-banner-is-top-level, landmark-complementary-is-top-level, landmark-unique, listitem, region, tabindex  
                    Equal Access failed rules: aria_child_valid, aria_complementary_labelled, aria_content_in_landmark, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_role_redundant, aria_role_valid, element_tabbable_role_valid, element_tabbable_unobscured, form_submit_button_exists, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: adaptable/aria-required-children, aria/aria-allowed-role, distinguishable/color-contrast, keyboard-accessible/focus-order, keyboard-accessible/tabindex, labels-and-names/label-content-mismatch, labels-and-names/label-title-only, landmarks/banner-is-top-level, text-alternatives/image-alt-words  
http://www.ci.pomona.ca.us/ http://www.ci.pomona.ca.us/ FAIL - no 57 0 0 0 0 0 fetch failed
http://www.escondido.org/ https://www.escondido.gov/ OK 200 yes 38399 121 21 307 121 403 Escondido, CA | Official Website
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R42, SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, landmark-unique, link-name, page-has-heading-one, region  
                    Equal Access failed rules: a_text_purpose, aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_role_redundant, aria_widget_labelled, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_quoted_correctly, widget_tabbable_single  
                    AccessLint failed rules: keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/link-name, navigable/page-has-heading-one, text-alternatives/image-alt-words  
https://www.joliet.gov/ https://www.joliet.gov/ FAIL 403 no 2417 5 3 3 5 1 Access Denied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.charleston-sc.gov/ https://www.charleston-sc.gov/ OK 200 no 18456 20 25 87 15 57 Charleston, SC - Official Website | Official Website
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background), SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, color-contrast, heading-order, landmark-unique, link-name, page-has-heading-one, region  
                    Equal Access failed rules: a_text_purpose, aria_child_valid, aria_complementary_labelled, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_before, input_onchange_review, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order, navigable/link-name, navigable/page-has-heading-one  
https://www.cityofmesquite.com/ https://www.cityofmesquite.com/ OK 200 no 19059 10 14 76 15 92 Mesquite, TX - Official Website | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R72, SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: heading-order, landmark-unique, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_region_label_unique, aria_role_redundant, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order  
https://www.naperville.il.us/ https://www.naperville.il.us/ FAIL 403 no 2973 9 6 21 6 4  
                    ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R13, SIA-R4 (Page has a descriptive title), SIA-R59, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background)  
                    axe failed rules: color-contrast, document-title, frame-title, html-has-lang, landmark-one-main, page-has-heading-one, region  
                    Equal Access failed rules: aria_content_in_landmark, element_attribute_deprecated, frame_src_valid, frame_title_exists, html_lang_exists, html_skipnav_exists, page_title_exists, skip_main_exists, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, navigable/bypass, navigable/document-title, navigable/page-has-heading-one, readable/html-has-lang  
https://rockfordil.gov/ https://rockfordil.gov/ OK 200 no 17209 30 12 104 10 80 Rockford, IL | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R42, SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R64, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, empty-heading, landmark-unique, region  
                    Equal Access failed rules: aria_accessiblename_exists, aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, frame_src_valid, heading_content_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, widget_tabbable_single  
                    AccessLint failed rules: keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/empty-heading  
http://www.bridgeportct.gov/ https://www.bridgeportct.gov/ OK 200 yes 13146 0 20 12 2 51 Homepage | City of Bridgeport
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R18 (ARIA states are consistent with element semantics), SIA-R3 (lang attribute has a valid language code), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R66 (Text has enhanced contrast with its background), SIA-R72, SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R78 (Headings of same level have text content between them)  
                    Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_id_unique, element_tabbable_unobscured, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading  
                    AccessLint failed rules: aria/aria-allowed-attr, landmarks/landmark-unique  
https://www.syr.gov/ https://www.syr.gov/Home OK 200 yes 14233 1 6 22 5 16 Home – City of Syracuse
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R72, SIA-R78 (Headings of same level have text content between them), SIA-R83 (Text can be resized to 200% without loss of content)  
                    axe failed rules: landmark-unique  
                    Equal Access failed rules: aria_content_in_landmark, aria_eventhandler_role_valid, aria_id_unique, aria_keyboard_handler_exists, aria_region_label_unique, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: distinguishable/color-contrast, landmarks/landmark-unique, landmarks/region  
https://savannahga.gov/ https://savannahga.gov/ OK 200 no 26273 28 19 74 35 98 Savannah, GA - Official Website | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R13, SIA-R14 (Images have an accessible name or are decorative), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: button-name, color-contrast, frame-title, heading-order, landmark-unique, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_region_label_unique, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, frame_src_valid, frame_title_exists, input_label_before, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/frame-title, labels-and-names/frame-title-unique, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order  
http://www.roseville.ca.us/ https://www.roseville.ca.us/ OK 200 yes 20496 37 25 138 27 170 Home - City of Roseville
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R17, SIA-R18 (ARIA states are consistent with element semantics), SIA-R3 (lang attribute has a valid language code), SIA-R42, SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R75, SIA-R8 (Form elements have accessible labels), SIA-R80 (ASCII art has a text alternative), SIA-R83 (Text can be resized to 200% without loss of content), SIA-R86 (Page has a mechanism to bypass repeated blocks of content), SIA-R90 (iframe elements have an accessible name)  
                    axe failed rules: aria-allowed-attr, aria-dialog-name, aria-input-field-name, aria-required-children, aria-valid-attr-value, image-redundant-alt, label-title-only, link-name, list, nested-interactive, presentation-role-conflict, region  
                    Equal Access failed rules: a_text_purpose, aria_attribute_valid, aria_child_tabbable, aria_child_valid, aria_content_in_landmark, aria_descendant_valid, aria_hidden_nontabbable, aria_id_unique, aria_keyboard_handler_exists, aria_role_redundant, aria_toolbar_label_unique, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, frame_src_valid, html_skipnav_exists, img_alt_redundant, input_label_exists, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: adaptable/aria-required-children, adaptable/list-children, aria/aria-allowed-attr, aria/aria-hidden-focus, aria/presentation-role-conflict, aria/presentational-children-focusable, distinguishable/color-contrast, labels-and-names/form-label, labels-and-names/label-title-only, landmarks/landmark-main, landmarks/region, navigable/link-name, text-alternatives/image-alt-words, text-alternatives/image-redundant-alt  
https://www.torranceca.gov/ https://www.torranceca.gov/ FAIL 403 no 2301 5 3 3 5 1 Access Denied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.cityoffullerton.com/ https://www.cityoffullerton.com/ FAIL 403 no 2397 5 3 3 5 1 Access Denied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
http://www.surpriseaz.gov/ https://surpriseaz.gov/ OK 200 yes 14428 2 1 16 2 3 Surprise, AZ - Official Website | Official Website
                    ALFA failed rules: SIA-R57 (Landmarks don’t repeat the same content)  
                    axe failed rules: region  
                    Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: landmarks/complementary-is-top-level, landmarks/region  
http://www.mcallen.net/ http://www.mcallen.net/ FAIL - no 60001 0 0 0 0 0 URL scan exceeded 60s timeout
http://www.cityofthornton.net/ https://www.thorntonco.gov/ OK 200 yes 17210 0 7 180 2 440 City of Thornton
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background)  
                    Equal Access failed rules: aria_content_in_landmark, aria_keyboard_handler_exists, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, input_onchange_review, script_select_review, style_background_decorative, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient  
                    AccessLint failed rules: labels-and-names/frame-title, landmarks/region  
https://www.visalia.city/ https://www.visalia.city/ OK 200 no 5418 12 2 6 3 0 City of Visalia - Home
                    ALFA failed rules: SIA-R9, SIA-R96  
                    axe failed rules: color-contrast, heading-order, image-alt, region, tabindex  
                    Equal Access failed rules: element_attribute_deprecated, meta_refresh_delay, style_color_misuse, style_highcontrast_visible  
                    AccessLint failed rules: enough-time/meta-refresh, enough-time/meta-refresh-no-exception, navigable/page-has-heading-one  
https://www.olatheks.org/ https://www.olatheks.org/ FAIL - no 42 0 0 0 0 0 fetch failed
https://www.gainesvillefl.gov/ https://www.gainesvillefl.gov/Home OK 200 yes 10892 2 10 18 2 8 Home Welcome to the City of Gainesville
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R78 (Headings of same level have text content between them), SIA-R83 (Text can be resized to 200% without loss of content)  
                    axe failed rules: color-contrast  
                    Equal Access failed rules: aria_content_in_landmark, aria_eventhandler_role_valid, aria_keyboard_handler_exists, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, frame_src_valid, html_skipnav_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: landmarks/region, navigable/heading-order  
https://www.wvc-ut.gov/ https://www.wvc-ut.gov/ OK 200 no 17222 13 10 79 14 159 West Valley City, UT - Official Site | Official Website
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R42, SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, landmark-unique, page-has-heading-one, region  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_before, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: distinguishable/color-contrast, keyboard-accessible/focus-order, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/page-has-heading-one  
https://www.spotsylvania.va.us/ https://www.spotsylvania.va.us/ OK 200 no 21399 24 17 102 21 90 Spotsylvania County, VA | Official Website
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R13, SIA-R14 (Images have an accessible name or are decorative), SIA-R42, SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: aria-required-children, aria-required-parent, aria-valid-attr-value, color-contrast, frame-title, heading-order, image-alt, landmark-unique, link-name, region  
                    Equal Access failed rules: a_text_purpose, aria_child_valid, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_parent_required, aria_region_label_unique, aria_role_redundant, aria_widget_labelled, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, frame_src_valid, frame_title_exists, input_label_before, input_label_visible, input_onchange_review, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, text_quoted_correctly, widget_tabbable_single  
                    AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/frame-title, landmarks/complementary-is-top-level, landmarks/landmark-unique, landmarks/region, navigable/heading-order, navigable/link-name, text-alternatives/image-alt-words  
https://www.cityoforange.org/ https://www.cityoforange.org/ FAIL 403 no 2604 5 3 3 5 1 Access Denied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: html-has-lang, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  

Detailed Failure Information (ALFA)

http://www.santa-clarita.com/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

Rule: SIA-R113

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

https://www.brla.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 18 more failures for this rule

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R72

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R85

Failure 1:

http://www.hialeahfl.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Failure 2:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

https://www.ci.san-bernardino.ca.us/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 10 more failures for this rule

Rule: SIA-R113

Failure 1:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: SIA-R83: Text can be resized to 200% without loss of content

Failure 1:

https://www.cityoftacoma.org/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Rule: SIA-R75

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

http://www.modestogov.com/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Failure 1:

Rule: SIA-R13

Failure 1:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

http://www.townofbabylon.com/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 14 more failures for this rule

Rule: SIA-R113

Failure 1:

Failure 2:

Rule: SIA-R13

Failure 1:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Failure 2:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

https://www.huntsvilleal.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 4 more failures for this rule

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R74

Failure 1:

Failure 2:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R8: Form elements have accessible labels

Failure 1:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

Rule: SIA-R85

Failure 1:

https://www.dsm.city/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 4 more failures for this rule

Rule: SIA-R113

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R17

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 4 more failures for this rule

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

http://www.yonkersny.gov/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R13

Failure 1:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R74

Failure 1:

https://www.cityofrochester.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 13 more failures for this rule

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

http://www.moval.org/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Failure 1:

http://www.ci.fayetteville.nc.us/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 1:

https://www.fontanaca.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Failure 2:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

https://www.columbusga.org/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: SIA-R13

Failure 1:

Rule: SIA-R2: HTML elements have a valid lang attribute

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Failure 1:

https://www.worcesterma.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 16 more failures for this rule

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

https://www.cityofpsl.com/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

https://littlerock.gov/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 4 more failures for this rule

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: SIA-R64

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R72

Failure 1:

Failure 2:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R74

Failure 1:

Failure 2:

Failure 3:

https://www.augustaga.gov/

Failure 1:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R85

Failure 1:

https://oxnard.gov/

Rule: SIA-R74

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Failure 1:

https://www.birminghamal.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

https://montgomeryal.gov/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 1:

http://www.friscotexas.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

https://www.amarillo.gov/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Failure 2:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R74

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R85

Failure 1:

Failure 2:

https://www.slc.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R2: HTML elements have a valid lang attribute

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R83: Text can be resized to 200% without loss of content

Failure 1:

https://grandrapidsmi.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Failure 2:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

http://www.huntingtonbeachca.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Failure 1:

Rule: SIA-R17

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 4 more failures for this rule

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R83: Text can be resized to 200% without loss of content

Failure 1:

https://www.opkansas.org/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Failure 2:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: SIA-R17

Failure 1:

Failure 2:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

https://www.glendaleca.gov/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 1:

http://www.talgov.com/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 6 more failures for this rule

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R70

Failure 1:

Rule: SIA-R74

Failure 1:

http://www.gptx.org/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R83: Text can be resized to 200% without loss of content

Failure 1:

https://www.mckinneytexas.org/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 6 more failures for this rule

Failure 1:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R72

Failure 1:

http://www.capecoral.net/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Failure 1:

https://www.siouxfalls.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R83: Text can be resized to 200% without loss of content

Failure 1:

http://www.peoriaaz.gov/

Rule: SIA-R9

Failure 1:

Rule: SIA-R96

Failure 1:

https://www.providenceri.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

https://www.cityofvancouver.us/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R74

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

Rule: SIA-R86: Page has a mechanism to bypass repeated blocks of content

Failure 1:

https://www.knoxvilletn.gov/

Rule: SIA-R110

Failure 1:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 1:

Failure 2:

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R21

Failure 1:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Rule: SIA-R47

Failure 1:

Rule: SIA-R59

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

https://www.akronohio.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

Rule: SIA-R113

Failure 1:

Failure 1:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Rule: SIA-R17

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 321 more failures for this rule

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 4 more failures for this rule

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R64

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Failure 2:

Failure 1:

https://www.shreveportla.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Failure 2:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

https://cityofmobile.org/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 10 more failures for this rule

Rule: SIA-R13

Failure 1:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R72

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Failure 3:

Failure 4:

https://www.nnva.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 23 more failures for this rule

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R42

Failure 1:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Failure 2:

Rule: SIA-R85

Failure 1:

https://www.fortlauderdale.gov/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 1:

https://www.chattanooga.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 9 more failures for this rule

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R83: Text can be resized to 200% without loss of content

Failure 1:

Rule: SIA-R86: Page has a mechanism to bypass repeated blocks of content

Failure 1:

https://www.tempe.gov/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 1:

https://www.aurora-il.org/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

https://www.eugene-or.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: SIA-R113

Failure 1:

Failure 2:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R42

Failure 1:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

http://www.elkgrovecity.org/

Rule: SIA-R74

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Failure 1:

https://www.cityofsalem.net/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 1:

https://www.ontarioca.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 5 more failures for this rule

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

https://www.carync.gov/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 1:

http://www.cityofrc.us/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 23 more failures for this rule

Rule: SIA-R113

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 20 more failures for this rule

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Rule: SIA-R40

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

https://www.ci.oceanside.ca.us/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 1:

https://www.cityoflancasterca.org/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 1:

https://ggcity.org/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R85

Failure 1:

http://www.ppines.com/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 6 more failures for this rule

Rule: SIA-R113

Failure 1:

Failure 2:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R72

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

https://www.fcgov.com/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

http://www.cityofpalmdale.org/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: SIA-R113

Failure 1:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R72

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

https://www.springfieldmo.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 19 more failures for this rule

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

http://www.cityofclarksville.com/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 19 more failures for this rule

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Rule: SIA-R74

Failure 1:

Failure 2:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

Rule: SIA-R86: Page has a mechanism to bypass repeated blocks of content

Failure 1:

https://www.cityofsalinas.org/Home

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 3 more failures for this rule

Rule: SIA-R13

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R83: Text can be resized to 200% without loss of content

Failure 1:

http://www.hayward-ca.gov/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

https://www.patersonnj.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R113

Failure 1:

Rule: SIA-R20

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R70

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

https://www.alexandriava.gov/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 14 more failures for this rule

Failure 1:

Rule: SIA-R2: HTML elements have a valid lang attribute

Failure 1:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R72

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

https://www.maconbibb.us/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Failure 2:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 5 more failures for this rule

Rule: SIA-R2: HTML elements have a valid lang attribute

Failure 1:

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R74

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Failure 2:

https://www.wycokck.org/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 4 more failures for this rule

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R72

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R74

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R83: Text can be resized to 200% without loss of content

Failure 1:

https://www.lakewood.org/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

https://www.springfield-ma.gov/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 4 more failures for this rule

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R83: Text can be resized to 200% without loss of content

Failure 1:

http://www.jacksonms.gov/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Failure 2:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

http://www.hollywoodfl.org/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 11 more failures for this rule

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

https://www.murfreesborotn.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

https://www.pasadenatx.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R70

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

https://bellevuewa.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 7 more failures for this rule

Rule: SIA-R113

Failure 1:

Failure 2:

Rule: SIA-R42

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Rule: SIA-R83: Text can be resized to 200% without loss of content

Failure 1:

http://www.escondido.org/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 3 more failures for this rule

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R42

Failure 1:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

https://www.joliet.gov/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 1:

https://www.charleston-sc.gov/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 8 more failures for this rule

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

https://www.cityofmesquite.com/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R72

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

https://www.naperville.il.us/

Rule: SIA-R1: id attributes are unique within the document

Failure 1:

Rule: SIA-R13

Failure 1:

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R59

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

https://rockfordil.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R42

Failure 1:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R64

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

http://www.bridgeportct.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 3 more failures for this rule

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R72

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

https://www.syr.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R72

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R83: Text can be resized to 200% without loss of content

Failure 1:

https://savannahga.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: SIA-R13

Failure 1:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

http://www.roseville.ca.us/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 1:

Rule: SIA-R17

Failure 1:

Failure 2:

Rule: SIA-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Rule: SIA-R42

Failure 1:

Failure 2:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Failure 2:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R75

Failure 1:

Rule: SIA-R8: Form elements have accessible labels

Failure 1:

Rule: SIA-R80: ASCII art has a text alternative

Failure 1:

Rule: SIA-R83: Text can be resized to 200% without loss of content

Failure 1:

Rule: SIA-R86: Page has a mechanism to bypass repeated blocks of content

Failure 1:

Failure 2:

Rule: SIA-R90: iframe elements have an accessible name

Failure 1:

https://www.torranceca.gov/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 1:

https://www.cityoffullerton.com/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 1:

http://www.surpriseaz.gov/

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

http://www.cityofthornton.net/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

https://www.visalia.city/

Rule: SIA-R9

Failure 1:

Rule: SIA-R96

Failure 1:

https://www.gainesvillefl.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R78: Headings of same level have text content between them

Failure 1:

Rule: SIA-R83: Text can be resized to 200% without loss of content

Failure 1:

https://www.wvc-ut.gov/

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Rule: SIA-R42

Failure 1:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

https://www.spotsylvania.va.us/

Rule: SIA-R11: Button elements have an accessible name

Failure 1:

Rule: SIA-R111: Interactive elements have a sufficient target size

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R13

Failure 1:

Rule: SIA-R14: Images have an accessible name or are decorative

Failure 1:

Failure 2:

Rule: SIA-R42

Failure 1:

Rule: SIA-R53: Headings follow a logical hierarchy

Failure 1:

Failure 2:

Rule: SIA-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R66: Text has enhanced contrast with its background

Failure 1:

Rule: SIA-R68: Accessible name contains the visible label text

Failure 1:

Failure 2:

Rule: SIA-R69: Text has sufficient contrast with its background

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

https://www.cityoforange.org/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 1:

Detailed Failure Information (axe)

http://www.santa-clarita.com/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Rule: heading-order

Impact: moderate

Failure 1:

Rule: image-alt

Impact: critical

Failure 1:

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 35 more failures for this rule

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 21 more failures for this rule

https://www.brla.gov/

Rule: color-contrast

Impact: serious

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

http://www.hialeahfl.gov/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 5 more failures for this rule

https://www.ci.san-bernardino.ca.us/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

https://www.cityoftacoma.org/

Rule: image-redundant-alt

Impact: minor

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

http://www.modestogov.com/

Rule: button-name

Impact: critical

Failure 1:

Rule: frame-title

Impact: serious

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Impact: serious

Failure 1:

Failure 2:

Rule: list

Impact: serious

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

http://www.townofbabylon.com/

Rule: aria-required-children

Impact: critical

Failure 1:

Failure 2:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Failure 2:

Rule: frame-title

Impact: serious

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 6 more failures for this rule

https://www.huntsvilleal.gov/

Rule: color-contrast

Impact: serious

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://www.dsm.city/

Rule: aria-hidden-focus

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 4 more failures for this rule

http://www.yonkersny.gov/

Rule: aria-allowed-attr

Impact: critical

Failure 1:

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Rule: frame-title

Impact: serious

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 4 more failures for this rule

http://www.moval.org/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: label-title-only

Impact: serious

Failure 1:

Impact: serious

Failure 1:

Failure 2:

Rule: scope-attr-valid

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 9 more failures for this rule

http://www.ci.fayetteville.nc.us/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.fontanaca.gov/

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

https://www.columbusga.org/

Rule: aria-required-parent

Impact: critical

Failure 1:

Rule: button-name

Impact: critical

Failure 1:

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 34 more failures for this rule

Rule: heading-order

Impact: moderate

Failure 1:

Rule: image-alt

Impact: critical

Failure 1:

Impact: serious

Failure 1:

Failure 2:

https://www.worcesterma.gov/

Rule: landmark-unique

Impact: moderate

Failure 1:

https://littlerock.gov/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: empty-heading

Impact: minor

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: landmark-complementary-is-top-level

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 15 more failures for this rule

https://www.augustaga.gov/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

https://oxnard.gov/

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.birminghamal.gov/

Rule: page-has-heading-one

Impact: moderate

Failure 1:

https://montgomeryal.gov/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

http://www.friscotexas.gov/

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 3 more failures for this rule

https://www.amarillo.gov/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 6 more failures for this rule

Impact: serious

Failure 1:

Failure 2:

Rule: scrollable-region-focusable

Impact: serious

Failure 1:

https://www.slc.gov/

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: image-alt

Impact: critical

Failure 1:

Failure 2:

Rule: label-title-only

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: landmark-unique

Impact: moderate

Failure 1:

https://grandrapidsmi.gov/

Rule: color-contrast

Impact: serious

Failure 1:

http://www.huntingtonbeachca.gov/

Rule: aria-prohibited-attr

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Rule: button-name

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.opkansas.org/

Rule: aria-hidden-focus

Impact: serious

Failure 1:

Failure 2:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 7 more failures for this rule

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 4 more failures for this rule

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://www.glendaleca.gov/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

http://www.talgov.com/

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

http://www.gptx.org/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

https://www.mckinneytexas.org/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

http://www.capecoral.net/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://www.siouxfalls.gov/

Rule: heading-order

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

http://www.peoriaaz.gov/

Rule: meta-refresh

Impact: critical

Failure 1:

https://www.providenceri.gov/

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

https://www.cityofvancouver.us/

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 31 more failures for this rule

https://www.knoxvilletn.gov/

Rule: aria-prohibited-attr

Impact: serious

Failure 1:

Impact: serious

Failure 1:

Rule: list

Impact: serious

Failure 1:

Rule: meta-viewport

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 9 more failures for this rule

https://www.akronohio.gov/

Rule: aria-hidden-focus

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 321 more failures for this rule

Rule: aria-prohibited-attr

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Rule: button-name

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Rule: empty-heading

Impact: minor

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: image-alt

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: listitem

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.shreveportla.gov/

Rule: aria-required-children

Impact: critical

Failure 1:

Failure 2:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Failure 2:

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 3 more failures for this rule

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 3 more failures for this rule

https://cityofmobile.org/

Rule: frame-title

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

https://www.nnva.gov/

Rule: aria-required-children

Impact: critical

Failure 1:

Failure 2:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Failure 2:

Rule: landmark-no-duplicate-contentinfo

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 9 more failures for this rule

https://www.fortlauderdale.gov/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.tempe.gov/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.aurora-il.org/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

http://ci.santa-rosa.ca.us/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://www.eugene-or.gov/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 18 more failures for this rule

http://www.elkgrovecity.org/

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.cityofsalem.net/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.carync.gov/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

http://www.cityofrc.us/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: landmark-one-main

Impact: moderate

Failure 1:

https://www.ci.oceanside.ca.us/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.cityoflancasterca.org/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://ggcity.org/

Rule: button-name

Impact: critical

Failure 1:

Failure 2:

Rule: landmark-banner-is-top-level

Impact: moderate

Failure 1:

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

http://www.ppines.com/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 8 more failures for this rule

http://www.cityofpalmdale.org/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 4 more failures for this rule

https://www.springfieldmo.gov/

Rule: color-contrast

Impact: serious

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

http://www.cityofclarksville.com/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: image-redundant-alt

Impact: minor

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 6 more failures for this rule

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

https://www.cityofsalinas.org/Home

Rule: frame-title

Impact: serious

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

http://www.hayward-ca.gov/

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: label-title-only

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Impact: serious

Failure 1:

Impact: serious

Failure 1:

Rule: list

Impact: serious

Failure 1:

Rule: listitem

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

https://www.patersonnj.gov/

Rule: aria-valid-attr

Impact: critical

Failure 1:

Rule: color-contrast

Impact: serious

Failure 1:

Rule: list

Impact: serious

Failure 1:

Rule: listitem

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 7 more failures for this rule

https://www.alexandriava.gov/

Rule: button-name

Impact: critical

Failure 1:

Rule: image-alt

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 3 more failures for this rule

Impact: serious

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.maconbibb.us/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Impact: serious

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 13 more failures for this rule

https://www.lakewood.org/

Rule: heading-order

Impact: moderate

Failure 1:

https://www.springfield-ma.gov/

Rule: heading-order

Impact: moderate

Failure 1:

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-banner-is-top-level

Impact: moderate

Failure 1:

Failure 2:

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Impact: serious

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 29 more failures for this rule

Impact: moderate

Failure 1:

http://www.jacksonms.gov/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 34 more failures for this rule

Rule: landmark-one-main

Impact: moderate

Failure 1:

Impact: serious

Failure 1:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 10 more failures for this rule

Impact: moderate

Failure 1:

http://www.ci.killeen.tx.us/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

http://www.hollywoodfl.org/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Impact: serious

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 11 more failures for this rule

https://www.murfreesborotn.gov/

Rule: aria-required-children

Impact: critical

Failure 1:

Failure 2:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Failure 2:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 3 more failures for this rule

https://www.pasadenatx.gov/

Rule: landmark-complementary-is-top-level

Impact: moderate

Failure 1:

Failure 2:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://bellevuewa.gov/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Failure 2:

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 8 more failures for this rule

Rule: label-title-only

Impact: serious

Failure 1:

Rule: landmark-banner-is-top-level

Impact: moderate

Failure 1:

Rule: landmark-complementary-is-top-level

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: listitem

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

Rule: region

Impact: moderate

Failure 1:

Rule: tabindex

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

http://www.escondido.org/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 103 more failures for this rule

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

https://www.joliet.gov/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.charleston-sc.gov/

Rule: aria-required-children

Impact: critical

Failure 1:

Failure 2:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Failure 2:

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: heading-order

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Impact: serious

Failure 1:

Failure 2:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.cityofmesquite.com/

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

https://www.naperville.il.us/

Rule: color-contrast

Impact: serious

Failure 1:

Rule: document-title

Impact: serious

Failure 1:

Rule: frame-title

Impact: serious

Failure 1:

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Failure 2:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

https://rockfordil.gov/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: empty-heading

Impact: minor

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 18 more failures for this rule

https://www.syr.gov/

Rule: landmark-unique

Impact: moderate

Failure 1:

https://savannahga.gov/

Rule: button-name

Impact: critical

Failure 1:

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 7 more failures for this rule

http://www.roseville.ca.us/

Rule: aria-allowed-attr

Impact: critical

Failure 1:

Failure 2:

Rule: aria-dialog-name

Impact: serious

Failure 1:

Rule: aria-input-field-name

Impact: serious

Failure 1:

Failure 2:

Rule: aria-required-children

Impact: critical

Failure 1:

Failure 2:

Rule: image-redundant-alt

Impact: minor

Failure 1:

Failure 2:

Rule: label-title-only

Impact: serious

Failure 1:

Impact: serious

Failure 1:

Rule: list

Impact: serious

Failure 1:

Rule: nested-interactive

Impact: serious

Failure 1:

Failure 2:

Rule: presentation-role-conflict

Impact: minor

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 16 more failures for this rule

https://www.torranceca.gov/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.cityoffullerton.com/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

http://www.surpriseaz.gov/

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://www.visalia.city/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Rule: heading-order

Impact: moderate

Failure 1:

Rule: image-alt

Impact: critical

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: tabindex

Impact: serious

Failure 1:

https://www.gainesvillefl.gov/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

https://www.wvc-ut.gov/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

https://www.spotsylvania.va.us/

Rule: aria-required-children

Impact: critical

Failure 1:

Failure 2:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Failure 2:

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Rule: frame-title

Impact: serious

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: image-alt

Impact: critical

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Impact: serious

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

https://www.cityoforange.org/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3: