open-scans

Scan Report: All UK Councils 2/2 (182)

🎯 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 12 35 231 16 294 Sefton Home
View Page 27 5 156 48 236 South Gloucestershire Council
View Page 48 23 81 58 210 Home | Tandridge District Council
View Page 7 20 161 13 201 Home | Test Valley Borough Council
View Page 0 9 141 25 175 North West Leicestershire District Council
View Page 15 12 134 13 174 Redditch Borough Council
View Page 64 23 76 5 168 Home | South Derbyshire District Council
View Page 24 20 103 18 165 Home | Waverley Borough Council
View Page 0 19 113 32 164 Tonbridge and Malling Borough Council – Tonbridge and Malling Borough Council
View Page 3 12 141 7 163 Home - sutton.gov.uk

🔧 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 104 of 182 View Rule
SIA-R66: Text has enhanced contrast with its background 89 of 182 View Rule
SIA-R87: First focusable element is a skip link 87 of 182 View Rule
SIA-R73: Text spacing can be adjusted without loss of content 69 of 182 View Rule
SIA-R57: Landmarks don’t repeat the same content 64 of 182 View Rule
SIA-R78: Headings of same level have text content between them 58 of 182 View Rule
SIA-R61 53 of 182 View Rule
SIA-R4: Page has a descriptive title 46 of 182 View Rule
SIA-R56: Landmarks with the same role are distinguishable 33 of 182 View Rule
SIA-R70 32 of 182 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 103 of 182 View Rule
landmark-one-main 61 of 182 View Rule
html-has-lang 46 of 182 View Rule
page-has-heading-one 26 of 182 View Rule
landmark-unique 25 of 182 View Rule
color-contrast 21 of 182 View Rule
heading-order 16 of 182 View Rule
landmark-no-duplicate-banner 11 of 182 View Rule
image-redundant-alt 11 of 182 View Rule
aria-allowed-role 10 of 182 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 45 page(s) - 45 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 2: Affects 32 page(s) - 32 occurrence(s)

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

HTML Pattern:

<center><h1>403 Forbidden</h1></center>

XPath (use in browser DevTools):

center

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('center')
  5. The element will be highlighted

Affected Pages:


Pattern 3: Affects 31 page(s) - 31 occurrence(s)

Scanner: ALFA Rule: SIA-R78: Headings of same level have text content between them Issue: There is no content between this heading and the next

HTML Pattern:

<h1>403 Forbidden</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 4: Affects 31 page(s) - 31 occurrence(s)

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

HTML Pattern:

<html><head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>








</body></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 5: Affects 31 page(s) - 31 occurrence(s)

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

HTML Pattern:

<html><head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>








</body></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 6: Affects 30 page(s) - 80 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 7: Affects 10 page(s) - 40 occurrence(s)

Scanner: ALFA Rule: SIA-R74: No description Issue: The font size is specified using an absolute unit

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 8: Affects 7 page(s) - 34 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>...</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 9: Affects 7 page(s) - 7 occurrence(s)

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

HTML Pattern:

<a id="ccc-info-link" class="ccc-link ccc-tabbable" href="https://www.civicuk.com/cookie-control" target="_blank" rel="noopener">...</a>

XPath (use in browser DevTools):

/a[@id="ccc-info-link"]

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[@id="ccc-info-link"]')
  5. The element will be highlighted

Affected Pages:


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

Scanner: ALFA Rule: SIA-R9: No description Issue: The refresh or redirect is delayed

HTML Pattern:

<meta http-equiv="refresh" content="360" />

XPath (use in browser DevTools):

/meta

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('/meta')
  5. The element will be highlighted

Affected Pages:


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

Scanner: ALFA Rule: SIA-R96: No description Issue: The refresh or redirect is delayed

HTML Pattern:

<meta http-equiv="refresh" content="360" />

XPath (use in browser DevTools):

/meta

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('/meta')
  5. The element will be highlighted

Affected Pages:


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

Scanner: axe Rule: meta-refresh Impact: critical Issue: Delayed refresh under 20 hours must not be used

HTML Pattern:

<meta http-equiv="refresh" content="360">

XPath (use in browser DevTools):

meta[http-equiv="refresh"]

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('meta[http-equiv="refresh"]')
  5. The element will be highlighted

Affected Pages:


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

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

HTML Pattern:

<button class="prefix-overlay-close prefix-overlay-action-later">Close subscription dialog</button>

XPath (use in browser DevTools):

/button[@class="prefix-overlay-close prefix-overlay-action-later"]

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('/button[@class="prefix-overlay-close prefix-overlay-action-later"]')
  5. The element will be highlighted

Affected Pages:


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

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

HTML Pattern:

<html lang="en">

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 5 page(s) - 5 occurrence(s)

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

HTML Pattern:

<button class="prefix-overlay-action-dismiss" id="prefix-dismissButton">No Thanks</button>

XPath (use in browser DevTools):

/button[@id="prefix-dismissButton"]

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('/button[@id="prefix-dismissButton"]')
  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
https://www.ne-derbyshire.gov.uk/ https://www.ne-derbyshire.gov.uk/ OK 200 no 6351 1 2 6 2 0 Home - North East Derbyshire District Council
                    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.nelincs.gov.uk/ https://www.nelincs.gov.uk/ OK 200 no 11352 0 13 30 0 74 Welcome to North East Lincolnshire Council
                    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-R73 (Text spacing can be adjusted without loss of content)  
                    Equal Access failed rules: aria_child_valid, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_sensory_misuse  
https://www.north-herts.gov.uk/ https://www.north-herts.gov.uk/ FAIL 403 no 13647 4 11 51 5 15 403 Forbidden
                    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-R2 (HTML elements have a valid lang attribute), 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-R87 (First focusable element is a skip link)  
                    axe failed rules: image-alt, landmark-no-duplicate-banner, landmark-unique, link-name  
                    Equal Access failed rules: a_text_purpose, aria_attribute_valid, aria_banner_label_unique, aria_complementary_labelled, aria_landmark_name_unique, element_tabbable_role_valid, element_tabbable_unobscured, figure_label_exists, img_alt_valid, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: labels-and-names/label-content-mismatch, landmarks/no-duplicate-banner, landmarks/region, navigable/link-name, text-alternatives/img-alt  
https://www.n-kesteven.gov.uk/ https://www.n-kesteven.gov.uk/ OK 200 no 12523 0 9 34 17 63 Welcome to North Kesteven District Council
                    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-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-R74, SIA-R78 (Headings of same level have text content between them)  
                    Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading, text_sensory_misuse  
                    AccessLint failed rules: distinguishable/color-contrast, labels-and-names/label-content-mismatch  
https://www.northlanarkshire.gov.uk/ https://www.northlanarkshire.gov.uk/ OK 200 no 7951 0 11 29 4 109 Welcome to North Lanarkshire Council | North Lanarkshire Council
                    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-R66 (Text has enhanced contrast with its background), SIA-R74, SIA-R78 (Headings of same level have text content between them), SIA-R80 (ASCII art has a text alternative)  
                    Equal Access failed rules: aria_complementary_label_visible, aria_content_in_landmark, aria_form_label_unique, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, label_name_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, labels-and-names/label-content-mismatch  
https://www.northlincs.gov.uk/ https://www.northlincs.gov.uk/ OK 200 no 10862 1 23 5 3 10 Home - North Lincolnshire Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), 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)  
                    axe failed rules: heading-order  
                    Equal Access failed rules: input_label_visible, style_color_misuse, style_highcontrast_visible, style_viewport_resizable  
                    AccessLint failed rules: keyboard-accessible/focus-order, navigable/heading-order, text-alternatives/image-alt-words  
https://www.north-norfolk.gov.uk/ https://www.north-norfolk.gov.uk/ OK 200 no 52238 13 0 47 11 28 RangeError: Invalid string length at stringify () at JSON (file:///home/runner/work/alfa-scan/alfa-scan/node_modules/@siteimprove/alfa-formatter-json/dist/json.js:8:16) at run (file:///home/runner/work/alfa-scan/alfa-scan/node_modules/@siteimprove/alfa-cli/bin/alfa/command/audit/run.js:79:41)
                    axe failed rules: aria-dialog-name, aria-required-children, aria-required-parent, landmark-banner-is-top-level, landmark-no-duplicate-banner, list, nested-interactive  
                    Equal Access failed rules: aria_child_tabbable, aria_child_valid, aria_complementary_label_visible, aria_keyboard_handler_exists, aria_role_valid, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_checkboxes_grouped, input_label_exists, input_label_visible, label_name_visible, style_background_decorative, style_color_misuse, style_highcontrast_visible, table_headers_exists, text_block_heading, text_contrast_sufficient, text_sensory_misuse, widget_tabbable_single  
                    AccessLint failed rules: aria/presentational-children-focusable, distinguishable/color-contrast, keyboard-accessible/nested-interactive, labels-and-names/label-content-mismatch, landmarks/no-duplicate-banner, navigable/page-has-heading-one  
https://www.northnorthants.gov.uk/ https://www.northnorthants.gov.uk/ OK 200 no 8546 1 8 25 1 105 North Northamptonshire Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R2 (HTML elements have a valid lang attribute), SIA-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: role-img-alt  
                    Equal Access failed rules: aria_accessiblename_exists, aria_keyboard_handler_exists, element_attribute_deprecated, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, widget_tabbable_exists  
                    AccessLint failed rules: text-alternatives/role-img-alt  
https://www.n-somerset.gov.uk/ https://n-somerset.gov.uk/ OK 200 yes 12896 5 14 33 3 71 Home | North Somerset Council
                    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), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74  
                    axe failed rules: color-contrast, landmark-no-duplicate-banner, landmark-unique, page-has-heading-one  
                    Equal Access failed rules: aria_banner_single, element_tabbable_unobscured, label_ref_valid, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/color-contrast, landmarks/no-duplicate-banner, text-alternatives/image-alt-words  
https://my.northtyneside.gov.uk/ https://my.northtyneside.gov.uk/?originalUrl=https://my.northtyneside.gov.uk/ OK 200 yes 5462 5 3 6 5 2  
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R79, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.northwarks.gov.uk/ https://www.northwarks.gov.uk/ OK 200 no 3758 3 4 4 3 0 Home – North Warwickshire Borough Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.nwleics.gov.uk/ https://www.nwleics.gov.uk/ OK 200 no 10478 0 9 141 25 131 North West Leicestershire District Council
                    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), SIA-R74, SIA-R83 (Text can be resized to 200% without loss of content)  
                    Equal Access failed rules: aria_form_label_unique, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, img_alt_redundant, input_label_visible, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: labels-and-names/label-content-mismatch, landmarks/region, text-alternatives/image-redundant-alt  
https://www.northyorks.gov.uk/ https://www.northyorks.gov.uk/ OK 200 no 8386 3 4 47 0 87 Home | North Yorkshire Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don’t repeat the same content), SIA-R74  
                    axe failed rules: label-title-only, region  
                    Equal Access failed rules: aria_content_in_landmark, 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  
https://www.northumberland.gov.uk/ https://www.northumberland.gov.uk/ OK 200 no 14160 9 9 47 8 72 Northumberland County Council | Northumberland County Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), 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-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: color-contrast, region  
                    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, style_viewport_resizable, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/color-contrast, labels-and-names/duplicate-id-aria, landmarks/landmark-unique  
https://www.norwich.gov.uk/ https://www.norwich.gov.uk/ OK 200 no 15235 1 14 39 3 35 Norwich CC Homepage | Norwich City Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), 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-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: page-has-heading-one  
                    Equal Access failed rules: aria_attribute_redundant, aria_content_in_landmark, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, form_label_unique, input_label_before, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: labels-and-names/duplicate-id-aria, labels-and-names/multiple-labels, navigable/page-has-heading-one  
https://www.nottinghamcity.gov.uk/ https://www.nottinghamcity.gov.uk/ OK 200 no 15876 0 7 16 4 56 Homepage - Nottingham City Council
                    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)  
                    Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, element_id_unique, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading  
                    AccessLint failed rules: adaptable/aria-required-children  
https://www.nottinghamshire.gov.uk/ https://www.nottinghamshire.gov.uk/ OK 200 no 10858 9 7 40 10 22 Home | Nottinghamshire County Council
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R2 (HTML elements have a valid lang attribute), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: image-alt, image-redundant-alt, link-name, region  
                    Equal Access failed rules: a_text_purpose, aria_content_in_landmark, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, img_alt_redundant, img_alt_valid, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/color-contrast, landmarks/region, navigable/link-name, text-alternatives/image-redundant-alt, text-alternatives/img-alt  
https://www.nuneatonandbedworth.gov.uk/ https://www.nuneatonandbedworth.gov.uk/ OK 200 no 3648 3 4 4 3 0 Homepage – Nuneaton and Bedworth Borough Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.oadby-wigston.gov.uk/ https://www.oadby-wigston.gov.uk/ OK 200 no 8914 0 8 109 3 26 Oadby and Wigston Borough Council
                    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), SIA-R83 (Text can be resized to 200% without loss of content)  
                    Equal Access failed rules: aria_form_label_unique, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, input_label_visible, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/label-content-mismatch  
https://www.oldham.gov.uk/ https://www.oldham.gov.uk/ OK 200 no 3650 3 4 4 3 0 Main Homepage
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.orkney.gov.uk/ https://www.orkney.gov.uk/ OK 200 no 17454 3 8 44 0 31 Home
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), 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-R87 (First focusable element is a skip link)  
                    axe failed rules: aria-allowed-role, region  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_role_valid, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, img_alt_decorative, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible  
https://www.oxford.gov.uk/ https://www.oxford.gov.uk/ OK 200 no 3890 3 4 4 3 0 Oxford City Council Homepage – Oxford City Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.oxfordshire.gov.uk/ https://www.oxfordshire.gov.uk/ OK 200 no 20693 12 7 49 10 25 Home | Oxfordshire County Council
                    ALFA failed rules: SIA-R3 (lang attribute has a valid language code), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R68 (Accessible name contains the visible label text), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: aria-allowed-role, color-contrast, region, skip-link  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_keyboard_handler_exists, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: aria/aria-allowed-role, distinguishable/color-contrast, keyboard-accessible/focus-order, landmarks/region, navigable/skip-link  
https://www.pembrokeshire.gov.uk/ https://www.pembrokeshire.gov.uk/ OK 200 no 9826 12 1 19 4 0 Pembrokeshire County Council
                    ALFA failed rules: SIA-R59  
                    axe failed rules: landmark-one-main, page-has-heading-one, region  
                    Equal Access failed rules: aria_content_in_landmark, element_attribute_deprecated, element_tabbable_visible, html_skipnav_exists, skip_main_exists, style_color_misuse, style_highcontrast_visible, svg_graphics_labelled, text_block_heading  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, navigable/bypass, navigable/page-has-heading-one  
https://www.pendle.gov.uk/ https://www.pendle.gov.uk/ OK 200 no 20497 6 8 28 6 89 Pendle Borough Council Homepage
                    ALFA failed rules: 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-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: color-contrast, heading-order, region  
                    Equal Access failed rules: aria_content_in_landmark, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/color-contrast, landmarks/region, navigable/heading-order  
https://www.pkc.gov.uk/ https://www.pkc.gov.uk/ OK 200 no 9934 1 12 48 1 5 Perth and Kinross Council - Perth & Kinross Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R61, SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R8 (Form elements have accessible labels)  
                    axe failed rules: page-has-heading-one  
                    Equal Access failed rules: aria_keyboard_handler_exists, aria_role_redundant, element_tabbable_unobscured, element_tabbable_visible, html_skipnav_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible  
                    AccessLint failed rules: navigable/page-has-heading-one  
https://www.peterborough.gov.uk/ https://www.peterborough.gov.uk/ OK 200 no 10251 2 6 76 0 31 Peterborough City Council | Peterborough City Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background)  
                    axe failed rules: region  
                    Equal Access failed rules: aria_complementary_labelled, aria_content_in_landmark, aria_keyboard_handler_exists, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_exists, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_sensory_misuse, widget_tabbable_single  
https://www.plymouth.gov.uk/ https://www.plymouth.gov.uk/ FAIL 403 no 3764 1 2 6 3 0 403 Forbidden
                    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, navigable/page-has-heading-one  
https://www.portsmouth.gov.uk/ https://www.portsmouth.gov.uk/ OK 200 no 22381 1 11 32 4 52 Home - Portsmouth City Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content)  
                    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, figure_label_exists, form_submit_button_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_sensory_misuse, widget_tabbable_exists  
                    AccessLint failed rules: landmarks/landmark-unique, landmarks/region, navigable/heading-order  
https://www.powys.gov.uk/ https://www.powys.gov.uk/ OK 200 no 5685 0 1 3 0 1 Cyngor Sir Powys County Council
                    ALFA failed rules: SIA-R73 (Text spacing can be adjusted without loss of content)  
                    Equal Access failed rules: style_background_decorative, style_color_misuse, style_highcontrast_visible  
https://www.preston.gov.uk/ https://www.preston.gov.uk/ OK 200 no 11375 1 14 52 2 20 Home Page - Preston City Council
                    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-R61, SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R8 (Form elements have accessible labels)  
                    axe failed rules: heading-order  
                    Equal Access failed rules: aria_keyboard_handler_exists, element_tabbable_unobscured, element_tabbable_visible, figure_label_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_sensory_misuse  
                    AccessLint failed rules: landmarks/landmark-unique, navigable/heading-order  
https://www.reading.gov.uk/ https://www.reading.gov.uk/ OK 200 no 33290 21 0 59 26 13 RangeError: Invalid string length at stringify () at JSON (file:///home/runner/work/alfa-scan/alfa-scan/node_modules/@siteimprove/alfa-formatter-json/dist/json.js:8:16) at run (file:///home/runner/work/alfa-scan/alfa-scan/node_modules/@siteimprove/alfa-cli/bin/alfa/command/audit/run.js:79:41)
                    axe failed rules: image-redundant-alt, landmark-one-main, landmark-unique  
                    Equal Access failed rules: aria_content_in_landmark, aria_contentinfo_misuse, aria_id_unique, aria_landmark_name_unique, aria_region_label_unique, aria_role_redundant, caption_track_exists, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, img_alt_redundant, input_label_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, widget_tabbable_single  
                    AccessLint failed rules: aria/presentational-children-focusable, keyboard-accessible/focus-order, keyboard-accessible/nested-interactive, landmarks/landmark-main, landmarks/landmark-unique, text-alternatives/image-alt-words, text-alternatives/image-redundant-alt  
https://www.redcar-cleveland.gov.uk/ https://www.redcar-cleveland.gov.uk/ FAIL 403 no 3671 3 4 4 3 0 403 Forbidden
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.redditchbc.gov.uk/ https://www.redditchbc.gov.uk/ OK 200 no 35291 15 12 134 13 83 Redditch Borough Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R53 (Headings follow a logical hierarchy), SIA-R61, 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)  
                    axe failed rules: color-contrast, heading-order, meta-viewport-large, page-has-heading-one  
                    Equal Access failed rules: aria_child_tabbable, aria_child_valid, aria_content_in_landmark, aria_descendant_valid, aria_eventhandler_role_valid, aria_keyboard_handler_exists, 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, input_label_exists, input_label_visible, label_name_visible, label_ref_valid, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, text_sensory_misuse, widget_tabbable_single  
                    AccessLint failed rules: distinguishable/color-contrast, keyboard-accessible/focus-order, labels-and-names/label-content-mismatch, labels-and-names/multiple-labels, navigable/heading-order, navigable/page-has-heading-one  
https://www.reigate-banstead.gov.uk/ https://www.reigate-banstead.gov.uk/ OK 200 no 3775 3 4 4 3 0 Reigate and Banstead Homepage
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.renfrewshire.gov.uk/ https://www.renfrewshire.gov.uk/ OK 200 no 9912 1 8 34 2 197 Welcome to Renfrewshire Council
                    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-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: region  
                    Equal Access failed rules: aria_content_in_landmark, aria_form_label_unique, aria_landmark_name_unique, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading  
                    AccessLint failed rules: distinguishable/color-contrast, labels-and-names/label-content-mismatch  
https://www.rctcbc.gov.uk/ https://www.rctcbc.gov.uk/Index.aspx OK 200 yes 7865 1 3 4 1 1 Welcome to Rhondda Cynon Taf County Borough Council
                    ALFA failed rules: SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: region  
                    Equal Access failed rules: aria_content_in_landmark, form_submit_button_exists, style_color_misuse, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/region  
https://www.ribblevalley.gov.uk/ https://www.ribblevalley.gov.uk/ OK 200 no 15774 0 9 21 0 78 Home Page – Ribble Valley Borough Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R18 (ARIA states are consistent with element semantics), 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)  
                    Equal Access failed rules: aria_attribute_valid, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse  
https://www.rochdale.gov.uk/ https://www.rochdale.gov.uk/ OK 200 no 4371 3 4 4 3 0 Homepage – Rochdale Borough Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.rochford.gov.uk/ https://www.rochford.gov.uk/ FAIL 403 no 17809 2 9 62 5 24 403 Forbidden
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R13, 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-R87 (First focusable element is a skip link)  
                    axe failed rules: aria-dialog-name, frame-title  
                    Equal Access failed rules: aria_complementary_label_visible, aria_complementary_labelled, aria_form_label_unique, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, figure_label_exists, frame_src_valid, frame_title_exists, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_quoted_correctly, text_sensory_misuse  
                    AccessLint failed rules: labels-and-names/frame-title, labels-and-names/label-content-mismatch, landmarks/region, navigable/page-has-heading-one  
https://www.rossendale.gov.uk/ https://www.rossendale.gov.uk/ OK 200 no 3525 3 4 4 3 0 Rossendale Borough Council Main Homepage – Rossendale Borough Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.rother.gov.uk/ https://www.rother.gov.uk/ OK 200 no 12213 1 6 50 15 12 Rother District Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don’t repeat the same content), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: region  
                    Equal Access failed rules: aria_content_in_landmark, aria_descendant_valid, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading  
                    AccessLint failed rules: aria/aria-allowed-role, labels-and-names/button-name, landmarks/landmark-unique, landmarks/region, navigable/link-name  
https://www.rotherham.gov.uk/ https://www.rotherham.gov.uk/ OK 200 no 3626 3 4 4 3 0 Homepage – Rotherham Metropolitan Borough Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.royalgreenwich.gov.uk/ https://www.royalgreenwich.gov.uk/ FAIL 403 no 2485 5 3 6 5 2 ERROR: The request could not be satisfied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R79, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.rbkc.gov.uk/ https://www.rbkc.gov.uk/ OK 200 no 7591 8 13 34 11 89 Homepage | Royal Borough of Kensington and Chelsea
                    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), SIA-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: color-contrast, landmark-no-duplicate-banner, landmark-unique  
                    Equal Access failed rules: aria_banner_label_unique, aria_banner_single, aria_form_label_unique, aria_landmark_name_unique, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/color-contrast, labels-and-names/label-content-mismatch, landmarks/no-duplicate-banner  
https://www.kingston.gov.uk/ https://www.kingston.gov.uk/ OK 200 no 13654 0 19 138 5 178 Homepage | Royal Borough of Kingston upon Thames
                    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-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-R74, SIA-R80 (ASCII art has a text alternative), SIA-R83 (Text can be resized to 200% without loss of content), SIA-R87 (First focusable element is a skip link)  
                    Equal Access failed rules: aria_attribute_redundant, aria_attribute_valid, aria_form_label_unique, aria_id_unique, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_interaction_review, frame_src_valid, input_checkboxes_grouped, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient, text_sensory_misuse, widget_tabbable_exists  
                    AccessLint failed rules: labels-and-names/duplicate-id-aria, labels-and-names/label-content-mismatch, landmarks/landmark-unique, landmarks/region  
https://www.rugby.gov.uk/ https://www.rugby.gov.uk/ OK 200 no 43415 3 0 52 4 1 Timeout exceeded while navigating to the page
                    axe failed rules: aria-allowed-attr, landmark-banner-is-top-level, landmark-contentinfo-is-top-level  
                    Equal Access failed rules: aria_attribute_valid, aria_keyboard_handler_exists, aria_role_valid, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading  
                    AccessLint failed rules: aria/aria-allowed-role, landmarks/banner-is-top-level, landmarks/contentinfo-is-top-level  
https://www.runnymede.gov.uk/ https://www.runnymede.gov.uk/ OK 200 no 3554 3 4 4 3 0 The homepage – Runnymede Borough Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.rushcliffe.gov.uk/ https://www.rushcliffe.gov.uk/ OK 200 no 12798 0 8 25 2 17 Home - Rushcliffe Borough Council
                    ALFA failed rules: 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-R66 (Text has enhanced contrast with its background), SIA-R78 (Headings of same level have text content between them)  
                    Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_form_label_unique, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading, text_sensory_misuse  
                    AccessLint failed rules: landmarks/region  
https://www.rushmoor.gov.uk/ https://www.rushmoor.gov.uk/ OK 200 no 24229 2 21 59 6 211 Home - Rushmoor Borough Council
                    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-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: heading-order, landmark-unique  
                    Equal Access failed rules: aria_content_in_landmark, aria_region_label_unique, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, input_label_visible, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, target_spacing_sufficient, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/link-in-text-block, labels-and-names/label-content-mismatch, landmarks/landmark-unique, navigable/heading-order, text-alternatives/image-alt-words, text-alternatives/img-alt  
https://www.rutland.gov.uk/ https://www.rutland.gov.uk/ OK 200 no 14141 6 20 35 4 159 Homepage | Rutland County Council
                    ALFA failed rules: 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-R66 (Text has enhanced 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-R80 (ASCII art has a text alternative), SIA-R83 (Text can be resized to 200% without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: aria-allowed-role, image-redundant-alt, region  
                    Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_role_valid, element_attribute_deprecated, element_tabbable_unobscured, img_alt_redundant, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, target_spacing_sufficient, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: aria/aria-allowed-role, labels-and-names/label-content-mismatch, text-alternatives/image-redundant-alt  
https://www.salford.gov.uk/ https://www.salford.gov.uk/ OK 200 no 10178 7 7 51 7 139 Salford City Council
                    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-R87 (First focusable element is a skip link)  
                    axe failed rules: aria-allowed-role, image-redundant-alt, landmark-one-main, landmark-unique, page-has-heading-one, region  
                    Equal Access failed rules: aria_attribute_required, aria_content_in_landmark, aria_contentinfo_misuse, aria_form_label_unique, aria_landmark_name_unique, aria_navigation_label_unique, aria_role_valid, element_attribute_deprecated, element_tabbable_visible, img_alt_redundant, input_label_visible, script_onclick_misuse, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, widget_tabbable_exists  
                    AccessLint failed rules: aria/aria-allowed-role, landmarks/landmark-main, landmarks/region, text-alternatives/image-redundant-alt  
https://www.sandwell.gov.uk/ https://www.sandwell.gov.uk/ OK 200 no 3630 3 4 4 3 0 Main Homepage – Sandwell Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.scotborders.gov.uk/ https://www.scotborders.gov.uk/ OK 200 no 3513 3 4 4 3 0 Scottish Borders Council – Scottish Borders Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.sefton.gov.uk/ https://www.sefton.gov.uk/ OK 200 no 19689 12 35 231 16 103 Sefton Home
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R3 (lang attribute has a valid language code), 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-R74, SIA-R8 (Form elements have accessible labels), SIA-R87 (First focusable element is a skip link), SIA-R94  
                    axe failed rules: aria-command-name, aria-required-children, aria-required-parent, aria-valid-attr-value, color-contrast, landmark-unique, region  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_form_label_unique, 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, input_label_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, text_sensory_misuse, widget_tabbable_single  
                    AccessLint failed rules: distinguishable/color-contrast, keyboard-accessible/nested-interactive, labels-and-names/aria-command-name, labels-and-names/duplicate-id-aria, landmarks/landmark-unique, landmarks/no-duplicate-banner, landmarks/region, text-alternatives/image-redundant-alt  
https://www.sevenoaks.gov.uk/ https://www.sevenoaks.gov.uk/ OK 200 no 4595 3 4 4 3 0 Sevenoaks District Council homepage
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.sheffield.gov.uk/ https://www.sheffield.gov.uk/ OK 200 no 7556 2 10 4 1 11 Homepage | Sheffield City Council
                    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-R61, SIA-R66 (Text has enhanced contrast with its background)  
                    axe failed rules: region  
                    Equal Access failed rules: html_skipnav_exists, page_title_exists, skip_main_exists, style_highcontrast_visible  
                    AccessLint failed rules: labels-and-names/label-content-mismatch  
https://www.shetland.gov.uk/ https://www.shetland.gov.uk/ OK 200 no 5168 5 4 10 5 1 Shetland Islands Council – Shetland Islands Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R61, 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, 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_background_decorative, style_color_misuse, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, navigable/page-has-heading-one, readable/html-has-lang  
https://www.shropshire.gov.uk/ https://next.shropshire.gov.uk/ OK 200 yes 13914 1 6 55 0 152 page.addScriptTag: Refused to execute inline script because it violates the following Content Security Policy directive: “script-src ‘self’ ‘nonce-SlJDOT/jSUw8t1fyFiQqjdqe’ https://*.googletagmanager.com https://www.youtube.com https://siteimproveanalytics.com”. Either the ‘unsafe-inline’ keyword, a hash (‘sha256-JKiJbq2l9mNMJ8t/GHj+7opGZGnqUf1+Evy3YGkopGM=’), or a nonce (‘nonce-…’) is required to enable inline execution.
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, 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: landmark-complementary-is-top-level  
                    Equal Access failed rules: aria_complementary_labelled, aria_content_in_landmark, aria_landmark_name_unique, element_tabbable_unobscured, element_tabbable_visible, fieldset_label_valid, form_submit_button_exists, input_label_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible  
https://www.slough.gov.uk/ https://www.slough.gov.uk/ OK 200 no 3871 3 4 4 3 0 Homepage – Slough Borough Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.solihull.gov.uk/ https://www.solihull.gov.uk/ OK 200 no 8426 3 11 40 5 48 Homepage | Solihull Metropolitan Borough Council
                    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-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: region  
                    Equal Access failed rules: aria_attribute_redundant, aria_content_in_landmark, aria_role_redundant, element_tabbable_unobscured, input_label_after, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_sensory_misuse  
                    AccessLint failed rules: aria/aria-valid-attr-value, landmarks/landmark-unique, landmarks/region, text-alternatives/image-alt-words  
https://www.somerset.gov.uk/ https://www.somerset.gov.uk/ OK 200 no 12057 1 7 73 2 17 Somerset Council
                    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-R61, SIA-R66 (Text has enhanced contrast with its background)  
                    axe failed rules: landmark-unique  
                    Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_landmark_name_unique, aria_navigation_label_unique, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, input_label_visible, label_ref_valid, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading  
                    AccessLint failed rules: labels-and-names/duplicate-id-aria, labels-and-names/multiple-labels  
https://www.south-ayrshire.gov.uk/ https://www.south-ayrshire.gov.uk/ FAIL 403 no 2445 5 5 5 6 0  
                    ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R4 (Page has a descriptive title), SIA-R59, SIA-R79, SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: document-title, html-has-lang, landmark-one-main, page-has-heading-one, region  
                    Equal Access failed rules: html_lang_exists, html_skipnav_exists, page_title_exists, skip_main_exists, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, navigable/bypass, navigable/document-title, navigable/page-has-heading-one, readable/html-has-lang  
https://www.scambs.gov.uk/ https://www.scambs.gov.uk/ OK 200 no 15501 3 10 57 7 59 Home - South Cambs District Council
                    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-R78 (Headings of same level have text content between them)  
                    axe failed rules: aria-allowed-role, color-contrast, tabindex  
                    Equal Access failed rules: aria_complementary_label_visible, aria_content_in_landmark, aria_role_valid, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, input_checkboxes_grouped, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading  
                    AccessLint failed rules: aria/aria-allowed-role, keyboard-accessible/tabindex, labels-and-names/duplicate-id-aria, labels-and-names/label-content-mismatch  
https://www.southderbyshire.gov.uk/ https://www.southderbyshire.gov.uk/ OK 200 no 17912 64 23 76 5 120 Home | South Derbyshire District Council
                    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-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)  
                    axe failed rules: aria-required-children, aria-required-parent, color-contrast, heading-order, landmark-unique, link-name, listitem, region, tabindex  
                    Equal Access failed rules: a_text_purpose, aria_attribute_valid, aria_content_in_landmark, aria_contentinfo_misuse, aria_form_label_unique, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, aria_role_redundant, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_exists, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, text_sensory_misuse, widget_tabbable_single  
                    AccessLint failed rules: keyboard-accessible/tabindex, landmarks/landmark-main, landmarks/region, navigable/heading-order, navigable/link-name  
https://www.southglos.gov.uk/ https://www.southglos.gov.uk/ OK 200 no 29019 27 5 156 48 116 South Gloucestershire Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: landmark-one-main, region  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_form_label_unique, aria_landmark_name_unique, aria_parent_required, aria_role_valid, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, form_interaction_review, input_label_exists, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: adaptable/list-children, aria/aria-allowed-role, keyboard-accessible/focus-order, labels-and-names/aria-toggle-field-name, labels-and-names/button-name, labels-and-names/duplicate-id-aria, labels-and-names/form-label, labels-and-names/label-content-mismatch, landmarks/landmark-main, landmarks/region  
https://www.southhams.gov.uk/ https://www.southhams.gov.uk/ FAIL 405 no 3889 5 4 27 3 0 Human Verification
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: image-redundant-alt, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_id_unique, skip_main_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, text-alternatives/image-redundant-alt  
https://www.sholland.gov.uk/ https://www.sholland.gov.uk/ FAIL 403 no 2596 5 5 5 6 0  
                    ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R4 (Page has a descriptive title), SIA-R59, SIA-R79, SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: document-title, html-has-lang, landmark-one-main, page-has-heading-one, region  
                    Equal Access failed rules: html_lang_exists, html_skipnav_exists, page_title_exists, skip_main_exists, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, navigable/bypass, navigable/document-title, navigable/page-has-heading-one, readable/html-has-lang  
https://www.southkesteven.gov.uk/ https://www.southkesteven.gov.uk/ OK 200 no 15231 7 23 27 9 280 Welcome to South Kesteven District Council - Homepage | South Kesteven District Council
                    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-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-R74, SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: heading-order, link-name, page-has-heading-one  
                    Equal Access failed rules: a_text_purpose, aria_attribute_redundant, aria_attribute_valid, aria_content_in_landmark, element_attribute_deprecated, element_tabbable_unobscured, 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, navigable/link-name, navigable/page-has-heading-one, navigable/skip-link  
https://www.southlanarkshire.gov.uk/ https://www.southlanarkshire.gov.uk/ OK 200 no 3799 3 4 4 3 0 South Lanarkshire Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.southnorfolkandbroadland.gov.uk/ https://www.southnorfolkandbroadland.gov.uk/ OK 200 no 13609 1 10 118 0 28 Welcome to South Norfolk & Broadland District Councils' website | Broadland and South Norfolk
                    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-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background)  
                    axe failed rules: region  
                    Equal Access failed rules: a_text_purpose, aria_child_tabbable, aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, element_attribute_deprecated, element_tabbable_unobscured, input_label_after, input_label_exists, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_sensory_misuse, widget_tabbable_exists  
https://www.southoxon.gov.uk/ https://www.southoxon.gov.uk/ OK 200 no 26847 11 20 67 3 188 Homepage - South Oxfordshire District Council
                    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-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R80 (ASCII art has a text alternative), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_contentinfo_label_unique, aria_contentinfo_misuse, aria_contentinfo_single, aria_landmark_name_unique, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/no-duplicate-contentinfo, landmarks/region  
https://www.southribble.gov.uk/ https://southribble.gov.uk/ OK 200 yes 4956 3 4 4 3 0 South Ribble Borough Council – South Ribble
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.sstaffs.gov.uk/ https://www.sstaffs.gov.uk/ OK 200 no 13697 8 7 73 22 98 Welcome to South Staffordshire Council - Homepage | South Staffordshire District Council
                    ALFA failed rules: 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-R78 (Headings of same level have text content between them)  
                    axe failed rules: aria-dialog-name, color-contrast, meta-viewport-large, region  
                    Equal Access failed rules: aria_attribute_redundant, aria_attribute_valid, aria_content_in_landmark, aria_form_label_unique, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, input_label_visible, label_ref_valid, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, text_sensory_misuse, widget_tabbable_single  
                    AccessLint failed rules: aria/presentational-children-focusable, keyboard-accessible/focus-order, keyboard-accessible/nested-interactive, labels-and-names/duplicate-id-aria, labels-and-names/label-content-mismatch, labels-and-names/multiple-labels, landmarks/region  
https://www.southtyneside.gov.uk/ https://www.southtyneside.gov.uk/ FAIL 403 no 2752 5 5 5 6 0  
                    ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R4 (Page has a descriptive title), SIA-R59, SIA-R79, SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: document-title, html-has-lang, landmark-one-main, page-has-heading-one, region  
                    Equal Access failed rules: html_lang_exists, html_skipnav_exists, page_title_exists, skip_main_exists, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, navigable/bypass, navigable/document-title, navigable/page-has-heading-one, readable/html-has-lang  
https://www.southampton.gov.uk/ https://www.southampton.gov.uk/ OK 200 no 10284 4 5 40 5 43 Southampton City Council
                    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)  
                    axe failed rules: landmark-unique, page-has-heading-one, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_landmark_name_unique, aria_navigation_label_unique, element_attribute_deprecated, element_tabbable_unobscured, input_checkboxes_grouped, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_sensory_misuse  
                    AccessLint failed rules: distinguishable/color-contrast, landmarks/region, navigable/page-has-heading-one  
https://www.southend.gov.uk/ https://www.southend.gov.uk/ OK 200 no 3935 3 4 4 3 0 The Homepage – Southend-on-Sea City Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.spelthorne.gov.uk/ https://www.spelthorne.gov.uk/ OK 200 no 13739 1 17 38 2 19 Homepage | Spelthorne Borough Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R18 (ARIA states are consistent with element semantics), SIA-R57 (Landmarks don’t repeat the same content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: region  
                    Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_id_unique, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: labels-and-names/label-content-mismatch, landmarks/landmark-unique  
https://www.stalbans.gov.uk/ https://www.stalbans.gov.uk/ OK 200 no 12101 13 18 91 11 66 St Albans City and District Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R2 (HTML elements have a valid lang attribute), 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-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R78 (Headings of same level have text content between them), SIA-R86 (Page has a mechanism to bypass repeated blocks of content)  
                    axe failed rules: aria-allowed-role, aria-dialog-name, heading-order, image-alt, image-redundant-alt, presentation-role-conflict, region  
                    Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_role_valid, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, fieldset_label_valid, fieldset_legend_valid, form_interaction_review, img_alt_redundant, img_alt_valid, input_label_visible, 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_sensory_misuse  
                    AccessLint failed rules: aria/aria-allowed-role, aria/presentation-role-conflict, labels-and-names/label-content-mismatch, landmarks/region, navigable/heading-order, navigable/p-as-heading, text-alternatives/image-redundant-alt, text-alternatives/img-alt  
https://www.sthelens.gov.uk/ https://www.sthelens.gov.uk/ OK 200 no 11919 1 11 62 1 39 St Helens Borough Council - St Helens Borough Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R8 (Form elements have accessible labels)  
                    axe failed rules: heading-order  
                    Equal Access failed rules: aria_content_in_landmark, element_tabbable_unobscured, element_tabbable_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_sensory_misuse  
                    AccessLint failed rules: landmarks/region  
https://www.staffordbc.gov.uk/ https://www.staffordbc.gov.uk/ OK 200 no 17160 2 4 51 2 4 People | Stafford Borough Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R74  
                    axe failed rules: landmark-no-duplicate-banner, landmark-unique  
                    Equal Access failed rules: aria_banner_label_unique, aria_landmark_name_unique, aria_navigation_label_unique, aria_role_redundant, element_tabbable_unobscured, element_tabbable_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, table_headers_exists, text_block_heading  
                    AccessLint failed rules: landmarks/no-duplicate-banner, landmarks/region  
https://www.staffordshire.gov.uk/ https://www.staffordshire.gov.uk/ OK 200 no 10341 3 14 21 2 68 Home | Staffordshire County Council
                    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-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: region  
                    Equal Access failed rules: aria_attribute_redundant, aria_attribute_valid, aria_content_in_landmark, aria_form_label_unique, element_id_unique, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading  
                    AccessLint failed rules: distinguishable/color-contrast, landmarks/region  
https://www.staffsmoorlands.gov.uk/ https://www.staffsmoorlands.gov.uk/ FAIL - no 440 0 0 0 0 0 fetch failed
https://www.stevenage.gov.uk/ https://www.stevenage.gov.uk/ OK 200 no 12468 24 13 64 29 45 Home
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R18 (ARIA states are consistent with element semantics), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text)  
                    axe failed rules: aria-hidden-focus, aria-valid-attr-value, landmark-unique  
                    Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_hidden_nontabbable, aria_id_unique, aria_keyboard_handler_exists, aria_navigation_label_unique, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, figure_label_exists, frame_src_valid, html_lang_exists, input_checkboxes_grouped, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, widget_tabbable_single  
                    AccessLint failed rules: aria/aria-hidden-focus, labels-and-names/label-content-mismatch, landmarks/landmark-unique, text-alternatives/image-redundant-alt  
https://www.stirling.gov.uk/ https://www.stirling.gov.uk/ FAIL 403 no 12837 2 7 100 2 27 Service unavailable
                    ALFA failed rules: 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)  
                    axe failed rules: aria-dialog-name, region  
                    Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, element_attribute_deprecated, element_tabbable_unobscured, input_checkboxes_grouped, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading  
                    AccessLint failed rules: landmarks/region  
https://www.stockport.gov.uk/ https://www.stockport.gov.uk/ FAIL - no 595 0 0 0 0 0 fetch failed
https://www.stockton.gov.uk/ https://www.stockton.gov.uk/ FAIL 403 no 2430 5 5 5 6 0  
                    ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R4 (Page has a descriptive title), SIA-R59, SIA-R79, SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: document-title, html-has-lang, landmark-one-main, page-has-heading-one, region  
                    Equal Access failed rules: html_lang_exists, html_skipnav_exists, page_title_exists, skip_main_exists, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, navigable/bypass, navigable/document-title, navigable/page-has-heading-one, readable/html-has-lang  
https://www.stoke.gov.uk/ https://www.stoke.gov.uk/ OK 200 no 3668 3 4 4 3 0 SoTCC homepage
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.stratford.gov.uk/ https://www.stratford.gov.uk/ OK 200 no 33639 4 17 87 8 120 Home | Stratford-on-Avon District Council
                    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-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-R78 (Headings of same level have text content between them), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: color-contrast, heading-order, landmark-one-main  
                    Equal Access failed rules: aria_content_in_landmark, aria_descendant_valid, element_attribute_deprecated, input_label_visible, label_content_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading, text_contrast_sufficient, text_quoted_correctly, text_sensory_misuse  
                    AccessLint failed rules: keyboard-accessible/focus-order, landmarks/landmark-main, landmarks/region, navigable/heading-order  
https://www.stroud.gov.uk/ https://www.stroud.gov.uk/ OK 200 no 13326 4 14 66 6 28 Home
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R18 (ARIA states are consistent with element semantics), 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-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: aria-valid-attr-value, landmark-unique, region, tabindex  
                    Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_navigation_label_unique, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, figure_label_exists, frame_src_valid, html_lang_exists, html_skipnav_exists, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/color-contrast, keyboard-accessible/tabindex, labels-and-names/label-content-mismatch, landmarks/landmark-unique  
https://www.suffolk.gov.uk/ https://www.suffolk.gov.uk/ OK 200 no 9425 0 2 69 0 37 Home - Suffolk County Council
                    ALFA failed rules: SIA-R57 (Landmarks don’t repeat the same content), SIA-R87 (First focusable element is a skip link)  
                    Equal Access failed rules: aria_content_in_landmark, 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_contrast_sufficient, widget_tabbable_single  
https://www.sunderland.gov.uk/ https://www.sunderland.gov.uk/ FAIL 403 no 2579 5 5 5 6 0  
                    ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R4 (Page has a descriptive title), SIA-R59, SIA-R79, SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: document-title, html-has-lang, landmark-one-main, page-has-heading-one, region  
                    Equal Access failed rules: html_lang_exists, html_skipnav_exists, page_title_exists, skip_main_exists, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, navigable/bypass, navigable/document-title, navigable/page-has-heading-one, readable/html-has-lang  
https://www.surreycc.gov.uk/ https://www.surreycc.gov.uk/ OK 200 no 12988 2 10 13 6 140 Surrey County Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R66 (Text has enhanced contrast with its background)  
                    axe failed rules: color-contrast  
                    Equal Access failed rules: element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_highcontrast_visible, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/color-contrast, keyboard-accessible/focus-order, landmarks/region  
https://www.surreyheath.gov.uk/ https://www.surreyheath.gov.uk/ OK 200 no 9755 0 9 16 2 22 Welcome to surreyheath.gov.uk
                    ALFA failed rules: 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-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)  
                    Equal Access failed rules: aria_attribute_redundant, aria_attribute_valid, aria_content_in_landmark, element_attribute_deprecated, element_tabbable_unobscured, input_checkboxes_grouped, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading  
                    AccessLint failed rules: labels-and-names/label-content-mismatch, landmarks/region  
https://www.swale.gov.uk/ https://swale.gov.uk/ FAIL 403 yes 4484 1 2 6 3 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, navigable/page-has-heading-one  
https://www.swindon.gov.uk/ https://www.swindon.gov.uk/ OK 200 no 3911 3 4 4 3 0 Swindon Borough Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.tameside.gov.uk/ https://www.tameside.gov.uk/ FAIL - no 10496 0 0 0 0 0 fetch failed
https://www.tamworth.gov.uk/ https://www.tamworth.gov.uk/ OK 200 no 8240 2 6 16 2 26 Home | Tamworth Borough Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R18 (ARIA states are consistent with element semantics), SIA-R61, SIA-R66 (Text has enhanced contrast with its background)  
                    axe failed rules: page-has-heading-one, region  
                    Equal Access failed rules: aria_attribute_redundant, aria_attribute_valid, aria_content_in_landmark, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading  
                    AccessLint failed rules: landmarks/region, navigable/page-has-heading-one  
https://www.tandridge.gov.uk/ https://www.tandridge.gov.uk/ OK 200 no 22577 48 23 81 58 64 Home | Tandridge District Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R40, 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-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), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: aria-allowed-role, aria-required-children, aria-required-parent, color-contrast, label-title-only, landmark-one-main, landmark-unique, meta-viewport-large, page-has-heading-one, region, tabindex  
                    Equal Access failed rules: aria_child_valid, aria_descendant_valid, aria_landmark_name_unique, aria_parent_required, aria_region_labelled, aria_role_valid, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, target_spacing_sufficient, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: adaptable/aria-required-parent, aria/aria-allowed-role, distinguishable/color-contrast, keyboard-accessible/tabindex, labels-and-names/label-content-mismatch, labels-and-names/label-title-only, landmarks/landmark-main  
https://www.teignbridge.gov.uk/ https://www.teignbridge.gov.uk/ FAIL - no 10494 0 0 0 0 0 fetch failed
https://www.telford.gov.uk/ https://www.telford.gov.uk/ OK 200 no 16365 1 17 39 8 100 Telford & Wrekin Council | Home
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R14 (Images have an accessible name or are decorative), SIA-R19, SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R74, SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: region  
                    Equal Access failed rules: aria_content_in_landmark, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading  
                    AccessLint failed rules: aria/aria-valid-attr-value, keyboard-accessible/focus-order, labels-and-names/label-content-mismatch, landmarks/landmark-main, landmarks/no-duplicate-banner, landmarks/no-duplicate-main  
https://www.tendringdc.gov.uk/ https://www.tendringdc.gov.uk/ OK 200 no 7924 16 12 41 15 70 Tendring District Council | Welcome to the official website of Tendring District Council
                    ALFA failed rules: SIA-R110, SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R21, 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-R66 (Text has enhanced 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-allowed-role, aria-hidden-focus, heading-order, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_contentinfo_misuse, aria_hidden_nontabbable, aria_role_allowed, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: aria/aria-allowed-role, aria/aria-hidden-focus, landmarks/landmark-main, landmarks/landmark-unique, landmarks/region, navigable/heading-order  
https://www.testvalley.gov.uk/ https://www.testvalley.gov.uk/ OK 200 no 29357 7 20 161 13 75 Home | Test Valley Borough Council
                    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-R47, SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74  
                    axe failed rules: landmark-no-duplicate-banner, landmark-unique, meta-viewport, region, skip-link  
                    Equal Access failed rules: aria_attribute_valid, aria_banner_label_unique, aria_content_in_landmark, aria_contentinfo_misuse, aria_landmark_name_unique, aria_navigation_label_unique, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, label_name_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: distinguishable/color-contrast, distinguishable/meta-viewport, labels-and-names/label-content-mismatch, landmarks/landmark-main, landmarks/no-duplicate-banner, landmarks/region, navigable/page-has-heading-one, navigable/skip-link  
https://www.tewkesbury.gov.uk/ https://tewkesbury.gov.uk/ OK 200 yes 22113 0 11 106 11 84 Tewkesbury Borough Council - Home - Information about living in the Tewkesbury Borough
                    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), SIA-R78 (Headings of same level have text content between them), SIA-R80 (ASCII art has a text alternative), SIA-R87 (First focusable element is a skip link)  
                    Equal Access failed rules: aria_complementary_labelled, aria_role_redundant, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_contrast_sufficient, text_sensory_misuse, widget_tabbable_exists  
                    AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/label-content-mismatch, text-alternatives/image-alt-words  
https://www.thanet.gov.uk/ https://www.thanet.gov.uk/ OK 200 no 14093 3 13 58 7 46 Thanet District Council - Thanet
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R80 (ASCII art has a text alternative)  
                    axe failed rules: image-redundant-alt  
                    Equal Access failed rules: element_attribute_deprecated, element_tabbable_unobscured, img_alt_redundant, input_label_after, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading  
                    AccessLint failed rules: labels-and-names/label-content-mismatch, text-alternatives/image-redundant-alt  
https://www.cityoflondon.gov.uk/ https://www.cityoflondon.gov.uk/ OK 200 no 10430 1 2 22 7 1 Things to do - City of London
                    ALFA failed rules: SIA-R57 (Landmarks don’t repeat the same content), SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: 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, input_checkboxes_grouped, input_label_visible, skip_main_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible  
                    AccessLint failed rules: distinguishable/color-contrast  
https://www.highland.gov.uk/ https://www.highland.gov.uk/ OK 200 no 3438 3 4 4 3 0 The Highland Council Homepage – Highland Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.lbbd.gov.uk/ https://www.lbbd.gov.uk/ FAIL 403 no 3568 3 4 4 3 0 403 Forbidden
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.barnet.gov.uk/ https://www.barnet.gov.uk/ FAIL 403 no 10100 1 3 35 3 1 403 Forbidden
                    ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R59, SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: page-has-heading-one  
                    Equal Access failed rules: aria_attribute_valid, aria_complementary_label_visible, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_contrast_sufficient, text_quoted_correctly, widget_tabbable_exists  
                    AccessLint failed rules: labels-and-names/label-content-mismatch, landmarks/region, navigable/page-has-heading-one  
https://www.bexley.gov.uk/ https://www.bexley.gov.uk/ OK 200 no 11030 2 19 60 9 30 Homepage | London Borough of Bexley
                    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-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: landmark-unique, region  
                    Equal Access failed rules: aria_complementary_labelled, aria_content_in_landmark, aria_landmark_name_unique, aria_navigation_label_unique, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, input_checkboxes_grouped, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/color-contrast, labels-and-names/label-title-only, labels-and-names/multiple-labels, landmarks/landmark-unique, navigable/heading-order  
https://www.brent.gov.uk/ https://www.brent.gov.uk/ OK 200 no 4769 5 0 8 5 0 Brent Council
                    axe failed rules: landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, element_attribute_deprecated, skip_main_exists, style_background_decorative, style_color_misuse, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region  
https://www.bromley.gov.uk/ https://www.bromley.gov.uk/ OK 200 no 4058 3 4 4 3 0 Bromley Council website homepage – London Borough of Bromley
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.camden.gov.uk/ https://www.camden.gov.uk/ OK 200 no 3916 1 2 6 2 0 Home - Camden Council
                    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.croydon.gov.uk/ https://www.croydon.gov.uk/ OK 200 no 11314 4 7 22 7 16 Welcome to croydon.gov.uk | Croydon Council
                    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-R57 (Landmarks don’t repeat the same content), SIA-R61  
                    axe failed rules: aria-dialog-name, landmark-no-duplicate-contentinfo, landmark-unique, region  
                    Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_descendant_valid, element_attribute_deprecated, element_tabbable_visible, input_label_exists, input_label_visible, label_name_visible, label_ref_valid, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: aria/presentational-children-focusable, keyboard-accessible/nested-interactive, labels-and-names/label-content-mismatch, landmarks/no-duplicate-contentinfo  
https://www.ealing.gov.uk/ https://www.ealing.gov.uk/site/ OK 200 yes 20501 3 9 94 3 145 Homepage
                    ALFA failed rules: 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-R87 (First focusable element is a skip link)  
                    axe failed rules: region  
                    Equal Access failed rules: aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, frame_src_valid, html_lang_exists, html_skipnav_exists, input_checkboxes_grouped, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_contrast_sufficient, text_sensory_misuse, widget_tabbable_exists, widget_tabbable_single  
                    AccessLint failed rules: landmarks/region  
https://www.enfield.gov.uk/ https://www.enfield.gov.uk/ FAIL 403 no 4253 1 2 6 3 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, navigable/page-has-heading-one  
https://www.hackney.gov.uk/ https://hackney.gov.uk/ OK 200 yes 6611 0 9 47 0 13 Hackney Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R84  
                    Equal Access failed rules: aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled  
https://www.lbhf.gov.uk/ https://www.lbhf.gov.uk/ OK 202 no 4137 3 3 4 4 0  
                    ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R59, SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: document-title, landmark-one-main, page-has-heading-one  
                    Equal Access failed rules: html_skipnav_exists, page_title_exists, skip_main_exists, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, navigable/bypass, navigable/document-title, navigable/page-has-heading-one  
https://www.haringey.gov.uk/ https://haringey.gov.uk/ OK 200 yes 18468 2 10 132 2 160 Welcome to Haringey Council | Haringey Council
                    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-R84, SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: landmark-unique, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_form_label_unique, aria_keyboard_handler_exists, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, input_label_after, input_label_visible, input_onchange_review, script_select_review, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading, text_sensory_misuse, widget_tabbable_single  
                    AccessLint failed rules: labels-and-names/label-content-mismatch, landmarks/landmark-unique  
https://www.harrow.gov.uk/ https://www.harrow.gov.uk/ OK 200 no 5070 3 4 4 3 0 Home – London Borough of Harrow
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.havering.gov.uk/ https://www.havering.gov.uk/ OK 200 no 3720 3 4 4 3 0 The London Borough of Havering website homepage – London Borough of Havering
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.hillingdon.gov.uk/ https://pre.hillingdon.gov.uk/ OK 200 yes 4353 3 4 4 3 0 Main homepage – Hillingdon Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.hounslow.gov.uk/ https://www.hounslow.gov.uk/ OK 200 no 3985 3 4 4 3 0 London Borough of Hounslow Website homepage | London Borough of Hounslow
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.islington.gov.uk/ https://www.islington.gov.uk/ OK 200 no 11381 13 11 29 17 30 Islington home page | Islington Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R16, SIA-R18 (ARIA states are consistent with element semantics), SIA-R61, 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-R78 (Headings of same level have text content between them)  
                    axe failed rules: aria-required-attr, image-redundant-alt, tabindex  
                    Equal Access failed rules: aria_attribute_valid, aria_child_valid, aria_content_in_landmark, aria_keyboard_handler_exists, aria_role_valid, element_attribute_deprecated, element_tabbable_unobscured, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, target_spacing_sufficient  
                    AccessLint failed rules: aria/aria-required-attr, distinguishable/color-contrast, keyboard-accessible/tabindex, text-alternatives/image-redundant-alt  
https://www.lambeth.gov.uk/ https://www.lambeth.gov.uk/ OK 200 no 6897 0 10 15 2 23 Welcome to Lambeth | Lambeth Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R73 (Text spacing can be adjusted without loss of content)  
                    Equal Access failed rules: aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, form_submit_button_exists, input_label_visible, label_name_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_sensory_misuse  
                    AccessLint failed rules: distinguishable/color-contrast, labels-and-names/label-content-mismatch  
https://lewisham.gov.uk/ https://lewisham.gov.uk/ OK 200 no 4092 4 3 4 4 1 Lewisham Council - Home
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.merton.gov.uk/ https://www.merton.gov.uk/ OK 200 no 9423 2 13 8 1 67 Welcome to Merton | Merton Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), 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-R74, SIA-R78 (Headings of same level have text content between them), SIA-R80 (ASCII art has a text alternative), SIA-R83 (Text can be resized to 200% without loss of content)  
                    axe failed rules: region  
                    Equal Access failed rules: aria_content_in_landmark, element_attribute_deprecated, style_color_misuse, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/region  
https://www.newham.gov.uk/ https://www.newham.gov.uk/ OK 200 no 3733 3 4 4 3 0 Newham Council – Newham Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.redbridge.gov.uk/ https://www.redbridge.gov.uk/ OK 200 no 16091 1 19 49 3 46 Redbridge Council homepage
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: aria-allowed-attr  
                    Equal Access failed rules: aria_attribute_redundant, aria_attribute_valid, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, input_label_visible, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, target_spacing_sufficient, text_block_heading  
                    AccessLint failed rules: keyboard-accessible/focus-order, labels-and-names/label-content-mismatch, landmarks/region  
https://www.richmond.gov.uk/ https://www.richmond.gov.uk/ OK 200 no 20032 2 7 93 5 46 Home - London Borough of Richmond upon Thames
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R66 (Text has enhanced contrast with its background), SIA-R74, SIA-R75, SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: aria-dialog-name, tabindex  
                    Equal Access failed rules: aria_content_in_landmark, aria_id_unique, aria_keyboard_handler_exists, aria_role_redundant, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, input_checkboxes_grouped, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, target_spacing_sufficient, text_block_heading, text_contrast_sufficient, text_quoted_correctly, text_sensory_misuse, widget_tabbable_single  
                    AccessLint failed rules: keyboard-accessible/focus-order, keyboard-accessible/tabindex, landmarks/region  
https://www.southwark.gov.uk/ https://www.southwark.gov.uk/ OK 200 no 15377 0 15 4 0 96 Hello, welcome to Southwark | Southwark Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74  
                    Equal Access failed rules: html_skipnav_exists, page_title_exists, skip_main_exists, style_highcontrast_visible  
https://www.sutton.gov.uk/ https://www.sutton.gov.uk/ OK 200 no 21930 3 12 141 7 250 Home - sutton.gov.uk
                    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-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-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: aria-allowed-attr, link-name  
                    Equal Access failed rules: a_text_purpose, aria_attribute_valid, aria_complementary_labelled, aria_keyboard_handler_exists, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, input_checkboxes_grouped, input_label_visible, label_name_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: labels-and-names/duplicate-id-aria, labels-and-names/label-content-mismatch, landmarks/landmark-unique, navigable/link-name  
https://www.towerhamlets.gov.uk/ https://www.towerhamlets.gov.uk/Home.aspx OK 200 yes 14557 5 14 46 4 239 Home
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R66 (Text has enhanced contrast with its background)  
                    axe failed rules: landmark-complementary-is-top-level, link-name  
                    Equal Access failed rules: a_text_purpose, aria_complementary_label_visible, aria_complementary_labelled, aria_landmark_name_unique, element_tabbable_unobscured, element_tabbable_visible, figure_label_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, target_spacing_sufficient, text_contrast_sufficient, text_quoted_correctly, text_sensory_misuse  
                    AccessLint failed rules: distinguishable/color-contrast, navigable/link-name  
https://www.walthamforest.gov.uk/ https://www.walthamforest.gov.uk/ OK 200 no 11286 3 12 25 4 17 Home | London Borough of Waltham Forest
                    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-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-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: aria-allowed-role, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_id_unique, aria_role_redundant, aria_role_valid, element_attribute_deprecated, element_tabbable_visible, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading  
                    AccessLint failed rules: aria/aria-allowed-role, labels-and-names/duplicate-id-aria, landmarks/landmark-unique, landmarks/region  
https://www.wandsworth.gov.uk/ https://www.wandsworth.gov.uk/ OK 200 no 18260 1 2 68 2 71 Home - Wandsworth Borough Council
                    ALFA failed rules: SIA-R3 (lang attribute has a valid language code), SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: tabindex  
                    Equal Access failed rules: aria_keyboard_handler_exists, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_checkboxes_grouped, input_label_visible, list_markup_review, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, svg_graphics_labelled, text_sensory_misuse, widget_tabbable_single  
                    AccessLint failed rules: distinguishable/color-contrast, keyboard-accessible/tabindex  
https://www.moray.gov.uk/ https://www.moray.gov.uk/ FAIL - no 419 0 0 0 0 0 fetch failed
https://www.valeofglamorgan.gov.uk/ https://www.valeofglamorgan.gov.uk/index.aspx OK 200 yes 5516 2 3 7 2 5 Vale of Glamorgan Council
                    ALFA failed rules: 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: color-contrast  
                    Equal Access failed rules: form_submit_button_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/color-contrast  
https://www.threerivers.gov.uk/ https://www.threerivers.gov.uk/ OK 200 no 18053 5 16 113 5 49 Home | Three Rivers District Council
                    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-R61, SIA-R66 (Text has enhanced contrast with its background)  
                    axe failed rules: image-redundant-alt, page-has-heading-one  
                    Equal Access failed rules: aria_form_label_unique, aria_landmark_name_unique, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, fieldset_label_valid, fieldset_legend_valid, form_interaction_review, html_skipnav_exists, img_alt_redundant, input_label_exists, input_label_visible, label_content_exists, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_sensory_misuse  
                    AccessLint failed rules: navigable/page-has-heading-one, text-alternatives/image-redundant-alt  
https://www.thurrock.gov.uk/ https://www.thurrock.gov.uk/ OK 200 no 9753 12 7 20 5 117 Thurrock Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: label-title-only, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_contentinfo_misuse, aria_form_label_unique, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading  
                    AccessLint failed rules: labels-and-names/label-title-only, landmarks/landmark-main, landmarks/region  
https://www.tmbc.gov.uk/ https://www.tmbc.gov.uk/ OK 200 no 14659 0 19 113 32 104 Tonbridge and Malling Borough Council – Tonbridge and Malling Borough Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R54, SIA-R56 (Landmarks with the same role are distinguishable), 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), SIA-R87 (First focusable element is a skip link)  
                    Equal Access failed rules: aria_attribute_valid, aria_hidden_nontabbable, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, input_checkboxes_grouped, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, text_sensory_misuse, widget_tabbable_exists  
                    AccessLint failed rules: aria/aria-hidden-focus, text-alternatives/image-alt-words  
https://www.torbay.gov.uk/ https://www.torbay.gov.uk/ OK 200 no 9470 3 8 17 3 71 Home - Torbay Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don’t repeat the same content), SIA-R78 (Headings of same level have text content between them)  
                    axe failed rules: region  
                    Equal Access failed rules: aria_content_in_landmark, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading  
                    AccessLint failed rules: distinguishable/color-contrast, landmarks/region  
https://www.torfaen.gov.uk/ https://www.torfaen.gov.uk/intro-splash.aspx OK 200 yes 6727 0 2 13 3 1 Welcome to Torfaen County Borough Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size)  
                    Equal Access failed rules: element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_highcontrast_visible, text_quoted_correctly  
                    AccessLint failed rules: adaptable/aria-required-children, navigable/link-name  
https://www.torridge.gov.uk/ https://www.torridge.gov.uk/ FAIL 403 no 2456 5 5 5 6 0  
                    ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R4 (Page has a descriptive title), SIA-R59, SIA-R79, SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: document-title, html-has-lang, landmark-one-main, page-has-heading-one, region  
                    Equal Access failed rules: html_lang_exists, html_skipnav_exists, page_title_exists, skip_main_exists, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, navigable/bypass, navigable/document-title, navigable/page-has-heading-one, readable/html-has-lang  
https://www.trafford.gov.uk/ https://www.trafford.gov.uk/ FAIL 403 no 2649 5 3 6 5 2 ERROR: The request could not be satisfied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R79, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://tunbridgewells.gov.uk/ https://tunbridgewells.gov.uk/ FAIL 403 no 3961 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.uttlesford.gov.uk/ https://www.uttlesford.gov.uk/ FAIL 403 no 2690 5 5 5 6 0  
                    ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R4 (Page has a descriptive title), SIA-R59, SIA-R79, SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: document-title, html-has-lang, landmark-one-main, page-has-heading-one, region  
                    Equal Access failed rules: html_lang_exists, html_skipnav_exists, page_title_exists, skip_main_exists, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, navigable/bypass, navigable/document-title, navigable/page-has-heading-one, readable/html-has-lang  
https://www.whitehorsedc.gov.uk/ https://www.whitehorsedc.gov.uk/ OK 200 no 27011 11 18 68 3 174 Homepage - Vale of White Horse District Council
                    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-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R80 (ASCII art has a text alternative), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: landmark-no-duplicate-contentinfo, landmark-one-main, landmark-unique, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_contentinfo_label_unique, aria_contentinfo_misuse, aria_contentinfo_single, aria_landmark_name_unique, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, fieldset_legend_valid, input_label_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/no-duplicate-contentinfo, landmarks/region  
https://www.wakefield.gov.uk/ https://www.wakefield.gov.uk/ OK 200 no 3112 4 4 7 4 0 Home - Wakefield Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R87 (First focusable element is a skip link)  
                    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, landmarks/region, navigable/page-has-heading-one, readable/html-has-lang  
https://go.walsall.gov.uk/ https://go.walsall.gov.uk/ OK 200 no 11486 0 31 76 2 86 Homepage | Walsall Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), 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-R72, SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R8 (Form elements have accessible labels), SIA-R87 (First focusable element is a skip link)  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_parent_required, aria_role_redundant, aria_role_valid, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, input_label_exists, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: labels-and-names/label-content-mismatch, text-alternatives/image-alt-words  
https://www.warrington.gov.uk/ https://www.warrington.gov.uk/ FAIL 403 no 10180 2 13 51 3 13 403 Forbidden
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R18 (ARIA states are consistent with element semantics), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74  
                    axe failed rules: landmark-no-duplicate-banner, page-has-heading-one  
                    Equal Access failed rules: aria_attribute_valid, aria_banner_single, aria_complementary_label_visible, aria_content_in_landmark, aria_role_redundant, element_tabbable_unobscured, element_tabbable_visible, img_alt_redundant, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, target_spacing_sufficient, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/color-contrast, landmarks/no-duplicate-banner, navigable/page-has-heading-one  
https://www.warwickdc.gov.uk/ https://www.warwickdc.gov.uk/site/ OK 200 yes 24708 3 9 32 0 79 Warwick District Council - Homepage
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R61, SIA-R66 (Text has enhanced contrast with its background)  
                    axe failed rules: aria-allowed-role  
                    Equal Access failed rules: aria_form_label_unique, aria_landmark_name_unique, aria_role_valid, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, img_alt_decorative, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading  
https://www.warwickshire.gov.uk/ https://www.warwickshire.gov.uk/ OK 200 no 3847 3 4 4 3 0 Homepage – Warwickshire County Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.watford.gov.uk/ https://www.watford.gov.uk/ OK 200 no 3704 3 4 4 3 0 Watford Borough Council – www.watford.gov.uk
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.waverley.gov.uk/ https://www.waverley.gov.uk/ OK 200 no 18574 24 20 103 18 61 Home | Waverley Borough Council
                    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-R54, 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-R87 (First focusable element is a skip link)  
                    axe failed rules: aria-required-children, aria-required-parent, color-contrast, listitem, meta-viewport-large, region, tabindex  
                    Equal Access failed rules: aria_content_in_landmark, aria_keyboard_handler_exists, element_attribute_deprecated, element_tabbable_visible, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading, text_contrast_sufficient, widget_tabbable_single  
                    AccessLint failed rules: distinguishable/color-contrast, keyboard-accessible/tabindex, labels-and-names/label-content-mismatch  
https://www.wealden.gov.uk/ https://www.wealden.gov.uk/ OK 200 no 25301 6 13 55 28 52 Wealden District Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, 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-R87 (First focusable element is a skip link)  
                    axe failed rules: color-contrast, region  
                    Equal Access failed rules: aria_child_valid, aria_content_in_landmark, aria_eventhandler_role_valid, aria_hidden_nontabbable, aria_role_redundant, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, input_label_visible, script_onclick_misuse, style_color_misuse, style_focus_visible, style_highcontrast_visible, target_spacing_sufficient, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: aria/aria-hidden-focus, distinguishable/color-contrast, keyboard-accessible/focus-order, landmarks/region, navigable/page-has-heading-one, navigable/skip-link, text-alternatives/image-alt-words  
https://www.welhat.gov.uk/ https://www.welhat.gov.uk/ OK 200 no 3893 3 4 4 3 0 Welwyn Hatfield Borough Council Homepage – Welwyn Hatfield Borough Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.westberks.gov.uk/ https://www.westberks.gov.uk/ OK 200 no 11619 0 10 20 1 12 Home - West Berkshire Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R56 (Landmarks with the same role are distinguishable), SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R8 (Form elements have accessible labels)  
                    Equal Access failed rules: aria_keyboard_handler_exists, element_tabbable_unobscured, element_tabbable_visible, figure_label_exists, input_label_visible, style_color_misuse, style_highcontrast_visible, target_spacing_sufficient, text_contrast_sufficient  
                    AccessLint failed rules: landmarks/landmark-unique  
https://www.westdevon.gov.uk/ https://www.westdevon.gov.uk/ FAIL 405 no 4066 5 4 27 3 0 Human Verification
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: image-redundant-alt, landmark-one-main, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_id_unique, skip_main_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, text-alternatives/image-redundant-alt  
https://www.west-dunbarton.gov.uk/ https://www.west-dunbarton.gov.uk/ OK 200 no 26635 1 12 43 4 6 Homepage | West Dunbartonshire Council
                    ALFA failed rules: 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-R74  
                    axe failed rules: heading-order  
                    Equal Access failed rules: aria_content_in_landmark, aria_keyboard_handler_exists, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: landmarks/region, navigable/heading-order  
https://www.westlancs.gov.uk/ https://www.westlancs.gov.uk/ OK 200 no 16329 5 17 51 4 142 Home - West Lancashire Borough Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, 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-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: heading-order, label-title-only, landmark-no-duplicate-banner, landmark-unique, list  
                    Equal Access failed rules: aria_banner_label_unique, aria_child_valid, aria_complementary_labelled, aria_content_in_landmark, aria_form_label_unique, aria_landmark_name_unique, element_attribute_deprecated, element_id_unique, element_tabbable_unobscured, element_tabbable_visible, html_lang_exists, html_skipnav_exists, input_label_visible, label_name_visible, style_background_decorative, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: adaptable/list-children, labels-and-names/label-title-only, landmarks/no-duplicate-banner, navigable/heading-order  
https://www.west-lindsey.gov.uk/ https://www.west-lindsey.gov.uk/ OK 200 no 12899 0 10 36 17 57 Welcome to West Lindsey District Council
                    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-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced 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-R87 (First focusable element is a skip link)  
                    Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, aria_descendant_valid, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading  
                    AccessLint failed rules: distinguishable/color-contrast, labels-and-names/label-content-mismatch  
https://www.westlothian.gov.uk/ https://www.westlothian.gov.uk/ OK 200 no 13580 18 16 114 5 59 West Lothian Council - West Lothian Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R17, SIA-R18 (ARIA states are consistent with element semantics), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R68 (Accessible name contains the visible label text), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R8 (Form elements have accessible labels)  
                    axe failed rules: aria-hidden-focus, color-contrast, region  
                    Equal Access failed rules: aria_attribute_valid, aria_complementary_labelled, aria_content_in_landmark, aria_form_label_unique, aria_hidden_nontabbable, aria_id_unique, aria_keyboard_handler_exists, element_tabbable_unobscured, element_tabbable_visible, figure_label_exists, form_submit_button_exists, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: aria/aria-hidden-focus, keyboard-accessible/focus-order, landmarks/region  
https://www.westnorthants.gov.uk/ https://www.westnorthants.gov.uk/ OK 200 no 8207 2 5 61 4 43 West Northamptonshire Council
                    ALFA failed rules: SIA-R57 (Landmarks don’t repeat the same content), SIA-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: region  
                    Equal Access failed rules: aria_content_in_landmark, aria_keyboard_handler_exists, aria_widget_labelled, element_attribute_deprecated, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, widget_tabbable_exists, widget_tabbable_single  
                    AccessLint failed rules: adaptable/aria-required-parent  
https://www.westoxon.gov.uk/ https://www.westoxon.gov.uk/ OK 200 no 9192 3 9 30 4 13 Home - West Oxfordshire District Council
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R78 (Headings of same level have text content between them), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: image-redundant-alt, landmark-no-duplicate-banner, link-name  
                    Equal Access failed rules: a_text_purpose, aria_complementary_label_visible, aria_complementary_labelled, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, img_alt_redundant, input_checkboxes_grouped, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, widget_tabbable_single  
                    AccessLint failed rules: aria/presentational-children-focusable, landmarks/no-duplicate-banner, navigable/link-name, text-alternatives/image-redundant-alt  
https://www.westsuffolk.gov.uk/ https://www.westsuffolk.gov.uk/ OK 200 no 17007 1 9 18 5 11 West Suffolk Council homepage
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size)  
                    axe failed rules: color-contrast  
                    Equal Access failed rules: aria_complementary_label_visible, element_attribute_deprecated, element_tabbable_unobscured, style_color_misuse, style_highcontrast_visible, style_viewport_resizable, svg_graphics_labelled, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/color-contrast  
https://www.westsussex.gov.uk/ https://www.westsussex.gov.uk/ OK 200 no 13793 1 11 80 1 45 West Sussex County Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content)  
                    axe failed rules: region  
                    Equal Access failed rules: aria_content_in_landmark, aria_descendant_valid, aria_form_label_unique, aria_role_redundant, element_attribute_deprecated, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible  
                    AccessLint failed rules: keyboard-accessible/focus-order  
https://www.westmorlandandfurness.gov.uk/ https://www.westmorlandandfurness.gov.uk/ OK 200 no 12094 4 15 28 8 60 Welcome to Westmorland and Furness | Westmorland and Furness Council
                    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-R86 (Page has a mechanism to bypass repeated blocks of content)  
                    axe failed rules: label-title-only, landmark-no-duplicate-banner, landmark-unique, region  
                    Equal Access failed rules: aria_banner_single, aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_id_unique, element_tabbable_role_valid, element_tabbable_unobscured, frame_src_valid, heading_markup_misuse, input_label_visible, label_name_visible, label_ref_valid, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled  
                    AccessLint failed rules: distinguishable/color-contrast, labels-and-names/duplicate-id-aria, labels-and-names/label-content-mismatch, labels-and-names/multiple-labels, landmarks/banner-is-top-level, landmarks/region  
https://www.wigan.gov.uk/ https://www.wigan.gov.uk/ OK 200 no 19310 16 3 73 0 0 Wigan Council - Residents
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size)  
                    axe failed rules: color-contrast  
                    Equal Access failed rules: element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_block_heading, text_contrast_sufficient  
https://www.wiltshire.gov.uk/ https://www.wiltshire.gov.uk/ FAIL 403 no 2676 5 5 5 6 0  
                    ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R4 (Page has a descriptive title), SIA-R59, SIA-R79, SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: document-title, html-has-lang, landmark-one-main, page-has-heading-one, region  
                    Equal Access failed rules: html_lang_exists, html_skipnav_exists, page_title_exists, skip_main_exists, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, navigable/bypass, navigable/document-title, navigable/page-has-heading-one, readable/html-has-lang  
https://www.winchester.gov.uk/ https://www.winchester.gov.uk/ OK 200 no 16602 8 16 105 5 38 Home - Winchester City Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R13, 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-R74, SIA-R80 (ASCII art has a text alternative), SIA-R84  
                    axe failed rules: color-contrast, landmark-banner-is-top-level, landmark-no-duplicate-banner, landmark-unique  
                    Equal Access failed rules: aria_content_in_landmark, aria_navigation_label_unique, 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, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: labels-and-names/frame-title, landmarks/banner-is-top-level, landmarks/region  
https://www.rbwm.gov.uk/ https://www.rbwm.gov.uk/ OK 202 no 4263 3 3 4 4 0  
                    ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R59, SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: document-title, landmark-one-main, page-has-heading-one  
                    Equal Access failed rules: html_skipnav_exists, page_title_exists, skip_main_exists, style_highcontrast_visible  
                    AccessLint failed rules: landmarks/landmark-main, navigable/bypass, navigable/document-title, navigable/page-has-heading-one  
https://www.wirral.gov.uk/ https://www.wirral.gov.uk/ OK 200 no 10049 0 4 13 2 265 Homepage | wirral.gov.uk
                    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)  
                    Equal Access failed rules: aria_content_in_landmark, element_attribute_deprecated, element_tabbable_unobscured, form_submit_button_exists, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, text_contrast_sufficient  
                    AccessLint failed rules: labels-and-names/frame-title, landmarks/region  
https://www.woking.gov.uk/ https://www.woking.gov.uk/ FAIL 403 no 2500 5 3 6 5 2 ERROR: The request could not be satisfied
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R79, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.wokingham.gov.uk/ https://www.wokingham.gov.uk/ OK 200 no 10288 2 12 30 2 60 Wokingham Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R18 (ARIA states are consistent with element semantics), 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-R87 (First focusable element is a skip link)  
                    axe failed rules: heading-order, region  
                    Equal Access failed rules: aria_attribute_valid, aria_content_in_landmark, element_attribute_deprecated, element_orientation_unlocked, element_tabbable_unobscured, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, svg_graphics_labelled, target_spacing_sufficient, text_sensory_misuse  
                    AccessLint failed rules: landmarks/region, navigable/heading-order  
https://www.wolverhampton.gov.uk/ https://www.wolverhampton.gov.uk/ OK 200 no 15351 15 24 75 17 100 Homepage | City Of Wolverhampton Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R18 (ARIA states are consistent with element semantics), SIA-R20, SIA-R47, 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: aria-valid-attr, heading-order, landmark-contentinfo-is-top-level, landmark-no-duplicate-contentinfo, landmark-unique, meta-viewport, nested-interactive, page-has-heading-one, region  
                    Equal Access failed rules: aria_attribute_allowed, aria_attribute_valid, aria_child_tabbable, aria_content_in_landmark, aria_contentinfo_label_unique, aria_descendant_valid, aria_form_label_unique, aria_id_unique, aria_keyboard_handler_exists, aria_landmark_name_unique, aria_role_redundant, aria_widget_labelled, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_quoted_correctly, widget_tabbable_exists  
                    AccessLint failed rules: aria/aria-valid-attr, distinguishable/meta-viewport, keyboard-accessible/focus-order, landmarks/no-duplicate-contentinfo, landmarks/region, navigable/heading-order, navigable/page-has-heading-one  
https://www.worcester.gov.uk/ https://www.worcester.gov.uk/ FAIL 307 no 17839 6 7 55 6 78 You are being redirected…
                    ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R40, SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: color-contrast, link-name, region  
                    Equal Access failed rules: a_text_purpose, aria_content_in_landmark, aria_keyboard_handler_exists, aria_region_labelled, aria_role_valid, element_tabbable_unobscured, form_submit_button_exists, input_checkboxes_grouped, input_label_visible, label_name_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, style_viewport_resizable, text_block_heading, text_contrast_sufficient, text_quoted_correctly, text_sensory_misuse  
                    AccessLint failed rules: landmarks/landmark-unique, landmarks/no-duplicate-banner, landmarks/region, navigable/link-name, navigable/skip-link  
https://www.worcestershire.gov.uk/ https://www.worcestershire.gov.uk/ OK 200 no 13716 11 20 64 21 94 Welcome to Worcestershire | Worcestershire County Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R20, SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced 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)  
                    axe failed rules: aria-valid-attr, select-name  
                    Equal Access failed rules: aria_attribute_allowed, aria_attribute_valid, aria_content_in_landmark, aria_role_redundant, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, input_checkboxes_grouped, input_label_visible, style_color_misuse, style_focus_visible, style_highcontrast_visible, text_block_heading, text_contrast_sufficient, text_sensory_misuse  
                    AccessLint failed rules: aria/aria-allowed-attr, aria/aria-valid-attr, keyboard-accessible/focus-order  
https://www.adur-worthing.gov.uk/ https://www.adur-worthing.gov.uk/ OK 200 no 9664 0 7 22 4 27 Home - Adur & Worthing Councils
                    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-R73 (Text spacing can be adjusted without loss of content), SIA-R83 (Text can be resized to 200% without loss of content)  
                    Equal Access failed rules: aria_complementary_labelled, aria_content_in_landmark, aria_role_redundant, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: distinguishable/color-contrast, keyboard-accessible/focus-order  
https://www.wrexham.gov.uk/ https://www.wrexham.gov.uk/ FAIL 403 no 6254 0 0 6 0 0 403 Forbidden
                    Equal Access failed rules: element_tabbable_unobscured, style_color_misuse, style_highcontrast_visible, text_block_heading  
https://www.wychavon.gov.uk/ https://www.wychavon.gov.uk/ FAIL 307 no 13490 4 7 69 5 46 You are being redirected…
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R40, 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-R87 (First focusable element is a skip link)  
                    axe failed rules: heading-order, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_keyboard_handler_exists, aria_region_labelled, aria_role_valid, caption_track_exists, element_tabbable_unobscured, element_tabbable_visible, form_submit_button_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  
                    AccessLint failed rules: landmarks/landmark-unique, landmarks/no-duplicate-banner, landmarks/region, navigable/heading-order  
https://www.wyre.gov.uk/ https://www.wyre.gov.uk/ OK 200 no 4004 3 4 4 3 0 Homepage – Wyre Council
                    ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R70, 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, html_lang_exists, skip_main_exists  
                    AccessLint failed rules: landmarks/landmark-main, landmarks/region, readable/html-has-lang  
https://www.wyreforestdc.gov.uk/ https://www.wyreforestdc.gov.uk/ OK 200 no 22892 2 10 46 1 16 Home | Wyre Forest District Council
                    ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R18 (ARIA states are consistent with element semantics), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link)  
                    axe failed rules: landmark-unique, region  
                    Equal Access failed rules: aria_content_in_landmark, aria_eventhandler_role_valid, aria_landmark_name_unique, aria_navigation_label_unique, aria_role_redundant, aria_widget_labelled, dir_attribute_valid, element_attribute_deprecated, element_tabbable_role_valid, element_tabbable_unobscured, element_tabbable_visible, input_checkboxes_grouped, input_label_visible, style_color_misuse, style_highcontrast_visible, text_block_heading, text_contrast_sufficient  
                    AccessLint failed rules: keyboard-accessible/focus-order  

Detailed Failure Information (ALFA)

https://www.ne-derbyshire.gov.uk/

Rule: SIA-R9

Failure 1:

Rule: SIA-R96

Failure 1:

https://www.nelincs.gov.uk/

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-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-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Failure 3:

https://www.north-herts.gov.uk/

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-R18: ARIA states are consistent with element semantics

Failure 1:

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

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:

Failure 1:

https://www.n-kesteven.gov.uk/

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:

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-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:

https://www.northlanarkshire.gov.uk/

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:

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-R74

Failure 1:

Failure 2:

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:

Failure 2:

https://www.northlincs.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 11 more failures for this rule

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:

Failure 2:

Failure 3:

https://www.northnorthants.gov.uk/

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

Failure 1:

Failure 2:

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

Failure 1:

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

https://www.n-somerset.gov.uk/

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-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:

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

Failure 1:

Failure 2:

Rule: SIA-R74

Failure 1:

Failure 2:

https://my.northtyneside.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R79

Failure 1:

Failure 1:

https://www.northwarks.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.nwleics.gov.uk/

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-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-R74

Failure 1:

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

Failure 1:

https://www.northyorks.gov.uk/

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

Failure 1:

Failure 2:

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

Failure 1:

Rule: SIA-R74

Failure 1:

https://www.northumberland.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

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-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 1:

https://www.norwich.gov.uk/

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-R3: lang attribute has a valid language code

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-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 1:

https://www.nottinghamcity.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

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:

https://www.nottinghamshire.gov.uk/

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

Failure 1:

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

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-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R74

Failure 1:

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

Failure 1:

https://www.nuneatonandbedworth.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.oadby-wigston.gov.uk/

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-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:

https://www.oldham.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.orkney.gov.uk/

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

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-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 1:

https://www.oxford.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.oxfordshire.gov.uk/

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-R68: Accessible name contains the visible label text

Failure 1:

Failure 1:

https://www.pembrokeshire.gov.uk/

Rule: SIA-R59

Failure 1:

https://www.pendle.gov.uk/

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

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:

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:

https://www.pkc.gov.uk/

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:

Failure 3:

Rule: SIA-R61

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-R8: Form elements have accessible labels

Failure 1:

https://www.peterborough.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

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.plymouth.gov.uk/

Rule: SIA-R9

Failure 1:

Rule: SIA-R96

Failure 1:

https://www.portsmouth.gov.uk/

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-R57: Landmarks don’t repeat the same content

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:

https://www.powys.gov.uk/

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

Failure 1:

https://www.preston.gov.uk/

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-R56: Landmarks with the same role are distinguishable

Failure 1:

Rule: SIA-R61

Failure 1:

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

Failure 1:

Failure 2:

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

Failure 1:

Failure 2:

Rule: SIA-R8: Form elements have accessible labels

Failure 1:

Failure 2:

https://www.redcar-cleveland.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.redditchbc.gov.uk/

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-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-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:

https://www.reigate-banstead.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.renfrewshire.gov.uk/

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-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:

https://www.rctcbc.gov.uk/

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-R78: Headings of same level have text content between them

Failure 1:

https://www.ribblevalley.gov.uk/

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

Failure 1:

Failure 2:

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

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:

Failure 3:

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

Failure 1:

Failure 2:

https://www.rochdale.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.rochford.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R13

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:

Failure 1:

https://www.rossendale.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.rother.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

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

Failure 1:

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

Failure 1:

Failure 1:

https://www.rotherham.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.royalgreenwich.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R79

Failure 1:

Failure 1:

https://www.rbkc.gov.uk/

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-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:

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

Failure 1:

https://www.kingston.gov.uk/

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-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-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-R74

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:

Failure 1:

https://www.runnymede.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.rushcliffe.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

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-R66: Text has enhanced contrast with its background

Failure 1:

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

Failure 1:

https://www.rushmoor.gov.uk/

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-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-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-R74

Failure 1:

Failure 2:

Failure 3:

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

Failure 1:

Failure 2:

Failure 3:

https://www.rutland.gov.uk/

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-R18: ARIA states are consistent with element semantics

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-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-R80: ASCII art has a text alternative

Failure 1:

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

Failure 1:

Failure 1:

https://www.salford.gov.uk/

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-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:

Failure 1:

https://www.sandwell.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.scotborders.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.sefton.gov.uk/

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 6 more failures for this rule

Rule: SIA-R42

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-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R74

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R8: Form elements have accessible labels

Failure 1:

Failure 1:

Rule: SIA-R94

Failure 1:

https://www.sevenoaks.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.sheffield.gov.uk/

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-R61

Failure 1:

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

Failure 1:

https://www.shetland.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R61

Failure 1:

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

Failure 1:

Failure 1:

https://www.shropshire.gov.uk/

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

Failure 1:

Rule: SIA-R113

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:

Failure 2:

https://www.slough.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.solihull.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

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:

Failure 1:

https://www.somerset.gov.uk/

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

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:

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:

https://www.south-ayrshire.gov.uk/

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

Failure 1:

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R59

Failure 1:

Rule: SIA-R79

Failure 1:

Failure 1:

https://www.scambs.gov.uk/

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-R78: Headings of same level have text content between them

Failure 1:

https://www.southderbyshire.gov.uk/

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:

Rule: SIA-R42

Failure 1:

Failure 2:

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-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:

Failure 3:

Failure 4:

Failure 5:

… and 2 more failures for this rule

https://www.southglos.gov.uk/

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:

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

Failure 1:

https://www.southhams.gov.uk/

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

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 1:

https://www.sholland.gov.uk/

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

Failure 1:

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R59

Failure 1:

Rule: SIA-R79

Failure 1:

Failure 1:

https://www.southkesteven.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

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-R18: ARIA states are consistent with element semantics

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-R74

Failure 1:

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

Failure 1:

https://www.southlanarkshire.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.southnorfolkandbroadland.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

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

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:

https://www.southoxon.gov.uk/

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-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-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R74

Failure 1:

Failure 2:

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

Failure 1:

Failure 2:

Failure 3:

Failure 1:

https://www.southribble.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.sstaffs.gov.uk/

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-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-R78: Headings of same level have text content between them

Failure 1:

https://www.southtyneside.gov.uk/

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

Failure 1:

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R59

Failure 1:

Rule: SIA-R79

Failure 1:

Failure 1:

https://www.southampton.gov.uk/

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

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:

https://www.southend.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.spelthorne.gov.uk/

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-R18: ARIA states are consistent with element semantics

Failure 1:

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

Failure 1:

Failure 1:

https://www.stalbans.gov.uk/

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-R2: HTML elements have a valid lang attribute

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:

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:

Rule: SIA-R74

Failure 1:

Failure 2:

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

Failure 1:

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

Failure 1:

Failure 2:

https://www.sthelens.gov.uk/

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-R57: Landmarks don’t repeat the same content

Failure 1:

Rule: SIA-R61

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-R8: Form elements have accessible labels

Failure 1:

https://www.staffordbc.gov.uk/

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-R74

Failure 1:

https://www.staffordshire.gov.uk/

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-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-R61

Failure 1:

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

Failure 1:

https://www.stevenage.gov.uk/

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-R17

Failure 1:

Failure 2:

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

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-R68: Accessible name contains the visible label text

Failure 1:

Failure 2:

https://www.stirling.gov.uk/

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:

https://www.stockton.gov.uk/

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

Failure 1:

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R59

Failure 1:

Rule: SIA-R79

Failure 1:

Failure 1:

https://www.stoke.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.stratford.gov.uk/

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-R3: lang attribute has a valid language code

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-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 1:

https://www.stroud.gov.uk/

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-R18: ARIA states are consistent with element semantics

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-R66: Text has enhanced contrast with its background

Failure 1:

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

Failure 1:

https://www.suffolk.gov.uk/

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

Failure 1:

Failure 1:

https://www.sunderland.gov.uk/

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

Failure 1:

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R59

Failure 1:

Rule: SIA-R79

Failure 1:

Failure 1:

https://www.surreycc.gov.uk/

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:

https://www.surreyheath.gov.uk/

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

Failure 1:

Failure 2:

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-R73: Text spacing can be adjusted without loss of content

Failure 1:

Rule: SIA-R74

Failure 1:

Failure 1:

https://www.swale.gov.uk/

Rule: SIA-R9

Failure 1:

Rule: SIA-R96

Failure 1:

https://www.swindon.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.tamworth.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

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

Failure 1:

Rule: SIA-R61

Failure 1:

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

Failure 1:

https://www.tandridge.gov.uk/

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:

Failure 4:

Failure 5:

Rule: SIA-R40

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: SIA-R42

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-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-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:

Failure 1:

https://www.telford.gov.uk/

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:

Rule: SIA-R19

Failure 1:

Rule: SIA-R61

Failure 1:

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

Failure 1:

Rule: SIA-R74

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 1:

https://www.tendringdc.gov.uk/

Rule: SIA-R110

Failure 1:

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

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R17

Failure 1:

Rule: SIA-R21

Failure 1:

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

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-R66: Text has enhanced contrast with its background

Failure 1:

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

Failure 1:

Failure 1:

https://www.testvalley.gov.uk/

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-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-R47

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-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: SIA-R74

Failure 1:

https://www.tewkesbury.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

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

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-R80: ASCII art has a text alternative

Failure 1:

Failure 1:

https://www.thanet.gov.uk/

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-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-R74

Failure 1:

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

Failure 1:

https://www.cityoflondon.gov.uk/

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

Failure 1:

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

Failure 1:

https://www.highland.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.lbbd.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.barnet.gov.uk/

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

Failure 1:

Rule: SIA-R59

Failure 1:

Failure 1:

https://www.bexley.gov.uk/

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-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-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.bromley.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.camden.gov.uk/

Rule: SIA-R9

Failure 1:

Rule: SIA-R96

Failure 1:

https://www.croydon.gov.uk/

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-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:

https://www.ealing.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

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:

Failure 1:

https://www.enfield.gov.uk/

Rule: SIA-R9

Failure 1:

Rule: SIA-R96

Failure 1:

https://www.hackney.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

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-R74

Failure 1:

Rule: SIA-R84

Failure 1:

https://www.lbhf.gov.uk/

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

Failure 1:

Rule: SIA-R59

Failure 1:

Failure 1:

https://www.haringey.gov.uk/

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

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-R61

Failure 1:

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

Failure 1:

Rule: SIA-R84

Failure 1:

Failure 1:

https://www.harrow.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.havering.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.hillingdon.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.hounslow.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.islington.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R16

Failure 1:

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

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-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.lambeth.gov.uk/

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-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

https://lewisham.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

Failure 1:

https://www.merton.gov.uk/

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

Failure 1:

Failure 2:

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-R74

Failure 1:

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

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:

https://www.newham.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.redbridge.gov.uk/

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-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:

Failure 3:

Failure 4:

Failure 5:

… and 3 more failures for this rule

Rule: SIA-R74

Failure 1:

Failure 2:

Failure 1:

https://www.richmond.gov.uk/

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:

Rule: SIA-R74

Failure 1:

Rule: SIA-R75

Failure 1:

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

Failure 1:

https://www.southwark.gov.uk/

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-R113

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-R74

Failure 1:

https://www.sutton.gov.uk/

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-R14: Images have an accessible name or are decorative

Failure 1:

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

Failure 1:

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:

Failure 2:

Failure 3:

https://www.towerhamlets.gov.uk/

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 6 more failures for this rule

Rule: SIA-R113

Failure 1:

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

Failure 1:

https://www.walthamforest.gov.uk/

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-R3: lang attribute has a valid language code

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-R66: Text has enhanced contrast with its background

Failure 1:

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

Failure 1:

https://www.wandsworth.gov.uk/

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

Failure 1:

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

Failure 1:

https://www.valeofglamorgan.gov.uk/

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:

https://www.threerivers.gov.uk/

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:

Failure 3:

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:

https://www.thurrock.gov.uk/

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

Failure 1:

Failure 2:

Rule: SIA-R113

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-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

https://www.tmbc.gov.uk/

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-R54

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-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:

Failure 2:

Failure 1:

https://www.torbay.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

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

Failure 1:

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

Failure 1:

Failure 2:

https://www.torfaen.gov.uk/

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

Failure 1:

Failure 2:

https://www.torridge.gov.uk/

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

Failure 1:

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R59

Failure 1:

Rule: SIA-R79

Failure 1:

Failure 1:

https://www.trafford.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R79

Failure 1:

Failure 1:

https://tunbridgewells.gov.uk/

Rule: SIA-R9

Failure 1:

Rule: SIA-R96

Failure 1:

https://www.uttlesford.gov.uk/

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

Failure 1:

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R59

Failure 1:

Rule: SIA-R79

Failure 1:

Failure 1:

https://www.whitehorsedc.gov.uk/

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-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-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R74

Failure 1:

Failure 2:

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

Failure 1:

Failure 2:

Failure 3:

Failure 1:

https://www.wakefield.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R61

Failure 1:

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

Failure 1:

Failure 1:

https://go.walsall.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

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-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-R72

Failure 1:

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: SIA-R74

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R8: Form elements have accessible labels

Failure 1:

Failure 1:

https://www.warrington.gov.uk/

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-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-R74

Failure 1:

https://www.warwickdc.gov.uk/

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-R61

Failure 1:

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

Failure 1:

https://www.warwickshire.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.watford.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.waverley.gov.uk/

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:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: SIA-R42

Failure 1:

Failure 2:

Rule: SIA-R54

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 1:

https://www.wealden.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R17

Failure 1:

Failure 2:

Failure 3:

Failure 4:

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:

Failure 1:

https://www.welhat.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.westberks.gov.uk/

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

Failure 1:

Rule: SIA-R113

Failure 1:

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

Failure 1:

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

Failure 1:

Failure 2:

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

Failure 1:

Failure 2:

Failure 3:

Rule: SIA-R8: Form elements have accessible labels

Failure 1:

Failure 2:

https://www.westdevon.gov.uk/

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

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 1:

https://www.west-dunbarton.gov.uk/

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:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: SIA-R74

Failure 1:

Failure 2:

Failure 3:

Failure 4:

https://www.westlancs.gov.uk/

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:

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-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 1:

https://www.west-lindsey.gov.uk/

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-R18: ARIA states are consistent with element semantics

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-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:

Failure 1:

https://www.westlothian.gov.uk/

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-R17

Failure 1:

Failure 2:

Failure 3:

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-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-R8: Form elements have accessible labels

Failure 1:

https://www.westnorthants.gov.uk/

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

Failure 1:

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

https://www.westoxon.gov.uk/

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:

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:

Failure 1:

https://www.westsuffolk.gov.uk/

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

https://www.westsussex.gov.uk/

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-R57: Landmarks don’t repeat the same content

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://www.westmorlandandfurness.gov.uk/

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-R3: lang attribute has a valid language code

Failure 1:

Failure 2:

Failure 3:

Failure 4:

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-R86: Page has a mechanism to bypass repeated blocks of content

Failure 1:

https://www.wigan.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

https://www.wiltshire.gov.uk/

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

Failure 1:

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R59

Failure 1:

Rule: SIA-R79

Failure 1:

Failure 1:

https://www.winchester.gov.uk/

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-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:

Failure 2:

Failure 3:

Rule: SIA-R74

Failure 1:

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

Failure 1:

Rule: SIA-R84

Failure 1:

https://www.rbwm.gov.uk/

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

Failure 1:

Rule: SIA-R59

Failure 1:

Failure 1:

https://www.wirral.gov.uk/

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

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:

https://www.woking.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R79

Failure 1:

Failure 1:

https://www.wokingham.gov.uk/

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-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:

Failure 1:

https://www.wolverhampton.gov.uk/

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-R18: ARIA states are consistent with element semantics

Failure 1:

Rule: SIA-R20

Failure 1:

Rule: SIA-R47

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:

Failure 2:

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

Failure 1:

https://www.worcester.gov.uk/

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-R40

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:

Failure 1:

https://www.worcestershire.gov.uk/

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-R20

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-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-R8: Form elements have accessible labels

Failure 1:

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

Failure 1:

https://www.adur-worthing.gov.uk/

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

Failure 1:

Failure 2:

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:

Failure 2:

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

Failure 1:

https://www.wychavon.gov.uk/

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

Failure 1:

Rule: SIA-R40

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:

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

Failure 1:

Failure 1:

https://www.wyre.gov.uk/

Rule: SIA-R4: Page has a descriptive title

Failure 1:

Rule: SIA-R70

Failure 1:

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

Failure 1:

Failure 1:

https://www.wyreforestdc.gov.uk/

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

Failure 1:

Failure 2:

Failure 3:

Failure 4:

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

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-R73: Text spacing can be adjusted without loss of content

Failure 1:

Failure 2:

Failure 1:

Detailed Failure Information (axe)

https://www.ne-derbyshire.gov.uk/

Rule: meta-refresh

Impact: critical

Failure 1:

https://www.north-herts.gov.uk/

Rule: image-alt

Impact: critical

Failure 1:

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Impact: serious

Failure 1:

https://www.northlincs.gov.uk/

Rule: heading-order

Impact: moderate

Failure 1:

https://www.north-norfolk.gov.uk/

Rule: aria-dialog-name

Impact: serious

Failure 1:

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: landmark-banner-is-top-level

Impact: moderate

Failure 1:

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Rule: list

Impact: serious

Failure 1:

Rule: nested-interactive

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

https://www.northnorthants.gov.uk/

Rule: role-img-alt

Impact: serious

Failure 1:

https://www.n-somerset.gov.uk/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

https://my.northtyneside.gov.uk/

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.northwarks.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.northyorks.gov.uk/

Rule: label-title-only

Impact: serious

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://www.northumberland.gov.uk/

Rule: color-contrast

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:

https://www.norwich.gov.uk/

Rule: page-has-heading-one

Impact: moderate

Failure 1:

https://www.nottinghamshire.gov.uk/

Rule: image-alt

Impact: critical

Failure 1:

Rule: image-redundant-alt

Impact: minor

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Impact: serious

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.nuneatonandbedworth.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.oldham.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.orkney.gov.uk/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://www.oxford.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.oxfordshire.gov.uk/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Rule: color-contrast

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:

Impact: moderate

Failure 1:

https://www.pembrokeshire.gov.uk/

Rule: landmark-one-main

Impact: moderate

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 5 more failures for this rule

https://www.pendle.gov.uk/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Rule: heading-order

Impact: moderate

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

https://www.pkc.gov.uk/

Rule: page-has-heading-one

Impact: moderate

Failure 1:

https://www.peterborough.gov.uk/

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://www.plymouth.gov.uk/

Rule: meta-refresh

Impact: critical

Failure 1:

https://www.portsmouth.gov.uk/

Rule: region

Impact: moderate

Failure 1:

https://www.preston.gov.uk/

Rule: heading-order

Impact: moderate

Failure 1:

https://www.reading.gov.uk/

Rule: image-redundant-alt

Impact: minor

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 14 more failures for this rule

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

https://www.redcar-cleveland.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.redditchbc.gov.uk/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 7 more failures for this rule

Rule: heading-order

Impact: moderate

Failure 1:

Rule: meta-viewport-large

Impact: minor

Failure 1:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

https://www.reigate-banstead.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.renfrewshire.gov.uk/

Rule: region

Impact: moderate

Failure 1:

https://www.rctcbc.gov.uk/

Rule: region

Impact: moderate

Failure 1:

https://www.rochdale.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.rochford.gov.uk/

Rule: aria-dialog-name

Impact: serious

Failure 1:

Rule: frame-title

Impact: serious

Failure 1:

https://www.rossendale.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.rother.gov.uk/

Rule: region

Impact: moderate

Failure 1:

https://www.rotherham.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.royalgreenwich.gov.uk/

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.rbkc.gov.uk/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 1 more failures for this rule

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

https://www.rugby.gov.uk/

Rule: aria-allowed-attr

Impact: critical

Failure 1:

Rule: landmark-banner-is-top-level

Impact: moderate

Failure 1:

Rule: landmark-contentinfo-is-top-level

Impact: moderate

Failure 1:

https://www.runnymede.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.rushmoor.gov.uk/

Rule: heading-order

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

https://www.rutland.gov.uk/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Rule: image-redundant-alt

Impact: minor

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.salford.gov.uk/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Rule: image-redundant-alt

Impact: minor

Failure 1:

Failure 2:

Rule: landmark-one-main

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:

https://www.sandwell.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.scotborders.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.sefton.gov.uk/

Rule: aria-command-name

Impact: serious

Failure 1:

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.sevenoaks.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.sheffield.gov.uk/

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://www.shetland.gov.uk/

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:

Failure 2:

https://www.shropshire.gov.uk/

Rule: landmark-complementary-is-top-level

Impact: moderate

Failure 1:

https://www.slough.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.solihull.gov.uk/

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.somerset.gov.uk/

Rule: landmark-unique

Impact: moderate

Failure 1:

https://www.south-ayrshire.gov.uk/

Rule: document-title

Impact: serious

Failure 1:

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:

https://www.scambs.gov.uk/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Rule: color-contrast

Impact: serious

Failure 1:

Rule: tabindex

Impact: serious

Failure 1:

https://www.southderbyshire.gov.uk/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 21 more failures for this rule

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Rule: heading-order

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Impact: serious

Failure 1:

Rule: listitem

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 21 more failures for this rule

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: tabindex

Impact: serious

Failure 1:

https://www.southglos.gov.uk/

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 21 more failures for this rule

https://www.southhams.gov.uk/

Rule: image-redundant-alt

Impact: minor

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.sholland.gov.uk/

Rule: document-title

Impact: serious

Failure 1:

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:

https://www.southkesteven.gov.uk/

Rule: heading-order

Impact: moderate

Failure 1:

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

https://www.southlanarkshire.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.southnorfolkandbroadland.gov.uk/

Rule: region

Impact: moderate

Failure 1:

https://www.southoxon.gov.uk/

Rule: landmark-no-duplicate-contentinfo

Impact: moderate

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 3 more failures for this rule

https://www.southribble.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.sstaffs.gov.uk/

Rule: aria-dialog-name

Impact: serious

Failure 1:

Rule: color-contrast

Impact: serious

Failure 1:

Rule: meta-viewport-large

Impact: minor

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

https://www.southtyneside.gov.uk/

Rule: document-title

Impact: serious

Failure 1:

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:

https://www.southampton.gov.uk/

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.southend.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.spelthorne.gov.uk/

Rule: region

Impact: moderate

Failure 1:

https://www.stalbans.gov.uk/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Failure 2:

Rule: aria-dialog-name

Impact: serious

Failure 1:

Rule: heading-order

Impact: moderate

Failure 1:

Rule: image-alt

Impact: critical

Failure 1:

Rule: image-redundant-alt

Impact: minor

Failure 1:

Rule: presentation-role-conflict

Impact: minor

Failure 1:

Failure 2:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

https://www.sthelens.gov.uk/

Rule: heading-order

Impact: moderate

Failure 1:

https://www.staffordbc.gov.uk/

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

https://www.staffordshire.gov.uk/

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.stevenage.gov.uk/

Rule: aria-hidden-focus

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 17 more failures for this rule

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

https://www.stirling.gov.uk/

Rule: aria-dialog-name

Impact: serious

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.stockton.gov.uk/

Rule: document-title

Impact: serious

Failure 1:

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:

https://www.stoke.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.stratford.gov.uk/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Rule: heading-order

Impact: moderate

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

https://www.stroud.gov.uk/

Rule: aria-valid-attr-value

Impact: critical

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Rule: tabindex

Impact: serious

Failure 1:

https://www.sunderland.gov.uk/

Rule: document-title

Impact: serious

Failure 1:

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:

https://www.surreycc.gov.uk/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

https://www.swale.gov.uk/

Rule: meta-refresh

Impact: critical

Failure 1:

https://www.swindon.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.tamworth.gov.uk/

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.tandridge.gov.uk/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 22 more failures for this rule

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: label-title-only

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: meta-viewport-large

Impact: minor

Failure 1:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Rule: tabindex

Impact: serious

Failure 1:

Failure 2:

Failure 3:

https://www.telford.gov.uk/

Rule: region

Impact: moderate

Failure 1:

https://www.tendringdc.gov.uk/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Rule: aria-hidden-focus

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: heading-order

Impact: moderate

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 4 more failures for this rule

https://www.testvalley.gov.uk/

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Failure 2:

Rule: meta-viewport

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Impact: moderate

Failure 1:

https://www.thanet.gov.uk/

Rule: image-redundant-alt

Impact: minor

Failure 1:

Failure 2:

Failure 3:

https://www.cityoflondon.gov.uk/

Rule: region

Impact: moderate

Failure 1:

https://www.highland.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.lbbd.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.barnet.gov.uk/

Rule: page-has-heading-one

Impact: moderate

Failure 1:

https://www.bexley.gov.uk/

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.brent.gov.uk/

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

https://www.bromley.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.camden.gov.uk/

Rule: meta-refresh

Impact: critical

Failure 1:

https://www.croydon.gov.uk/

Rule: aria-dialog-name

Impact: serious

Failure 1:

Rule: landmark-no-duplicate-contentinfo

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.ealing.gov.uk/

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.enfield.gov.uk/

Rule: meta-refresh

Impact: critical

Failure 1:

https://www.lbhf.gov.uk/

Rule: document-title

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

https://www.haringey.gov.uk/

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.harrow.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.havering.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.hillingdon.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.hounslow.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.islington.gov.uk/

Rule: aria-required-attr

Impact: critical

Failure 1:

Rule: image-redundant-alt

Impact: minor

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: tabindex

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 3 more failures for this rule

https://lewisham.gov.uk/

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.merton.gov.uk/

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://www.newham.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.redbridge.gov.uk/

Rule: aria-allowed-attr

Impact: critical

Failure 1:

https://www.richmond.gov.uk/

Rule: aria-dialog-name

Impact: serious

Failure 1:

Rule: tabindex

Impact: serious

Failure 1:

https://www.sutton.gov.uk/

Rule: aria-allowed-attr

Impact: critical

Failure 1:

Impact: serious

Failure 1:

Failure 2:

https://www.towerhamlets.gov.uk/

Rule: landmark-complementary-is-top-level

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Impact: serious

Failure 1:

https://www.walthamforest.gov.uk/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://www.wandsworth.gov.uk/

Rule: tabindex

Impact: serious

Failure 1:

https://www.valeofglamorgan.gov.uk/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

https://www.threerivers.gov.uk/

Rule: image-redundant-alt

Impact: minor

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

https://www.thurrock.gov.uk/

Rule: label-title-only

Impact: serious

Failure 1:

Failure 2:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 4 more failures for this rule

https://www.torbay.gov.uk/

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.torridge.gov.uk/

Rule: document-title

Impact: serious

Failure 1:

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:

https://www.trafford.gov.uk/

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://tunbridgewells.gov.uk/

Rule: meta-refresh

Impact: critical

Failure 1:

https://www.uttlesford.gov.uk/

Rule: document-title

Impact: serious

Failure 1:

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:

https://www.whitehorsedc.gov.uk/

Rule: landmark-no-duplicate-contentinfo

Impact: moderate

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 3 more failures for this rule

https://www.wakefield.gov.uk/

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:

https://www.warrington.gov.uk/

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

https://www.warwickdc.gov.uk/

Rule: aria-allowed-role

Impact: minor

Failure 1:

Failure 2:

Failure 3:

https://www.warwickshire.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.watford.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.waverley.gov.uk/

Rule: aria-required-children

Impact: critical

Failure 1:

Rule: aria-required-parent

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Rule: color-contrast

Impact: serious

Failure 1:

Rule: listitem

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Rule: meta-viewport-large

Impact: minor

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 7 more failures for this rule

Rule: tabindex

Impact: serious

Failure 1:

Failure 2:

Failure 3:

https://www.wealden.gov.uk/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: region

Impact: moderate

Failure 1:

https://www.welhat.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.westdevon.gov.uk/

Rule: image-redundant-alt

Impact: minor

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.west-dunbarton.gov.uk/

Rule: heading-order

Impact: moderate

Failure 1:

https://www.westlancs.gov.uk/

Rule: heading-order

Impact: moderate

Failure 1:

Rule: label-title-only

Impact: serious

Failure 1:

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: list

Impact: serious

Failure 1:

https://www.westlothian.gov.uk/

Rule: aria-hidden-focus

Impact: serious

Failure 1:

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 11 more failures for this rule

Rule: region

Impact: moderate

Failure 1:

https://www.westnorthants.gov.uk/

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://www.westoxon.gov.uk/

Rule: image-redundant-alt

Impact: minor

Failure 1:

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Impact: serious

Failure 1:

https://www.westsuffolk.gov.uk/

Rule: color-contrast

Impact: serious

Failure 1:

https://www.westsussex.gov.uk/

Rule: region

Impact: moderate

Failure 1:

https://www.westmorlandandfurness.gov.uk/

Rule: label-title-only

Impact: serious

Failure 1:

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.wigan.gov.uk/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 11 more failures for this rule

https://www.wiltshire.gov.uk/

Rule: document-title

Impact: serious

Failure 1:

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:

https://www.winchester.gov.uk/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

Rule: landmark-banner-is-top-level

Impact: moderate

Failure 1:

Rule: landmark-no-duplicate-banner

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

https://www.rbwm.gov.uk/

Rule: document-title

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

https://www.woking.gov.uk/

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.wokingham.gov.uk/

Rule: heading-order

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.wolverhampton.gov.uk/

Rule: aria-valid-attr

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Rule: heading-order

Impact: moderate

Failure 1:

Rule: landmark-contentinfo-is-top-level

Impact: moderate

Failure 1:

Rule: landmark-no-duplicate-contentinfo

Impact: moderate

Failure 1:

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: meta-viewport

Impact: moderate

Failure 1:

Rule: nested-interactive

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Rule: page-has-heading-one

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://www.worcester.gov.uk/

Rule: color-contrast

Impact: serious

Failure 1:

Failure 2:

Failure 3:

Impact: serious

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

https://www.worcestershire.gov.uk/

Rule: aria-valid-attr

Impact: critical

Failure 1:

Failure 2:

Failure 3:

Failure 4:

Failure 5:

… and 5 more failures for this rule

Rule: select-name

Impact: critical

Failure 1:

https://www.wychavon.gov.uk/

Rule: heading-order

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

Failure 2:

Failure 3:

https://www.wyre.gov.uk/

Rule: html-has-lang

Impact: serious

Failure 1:

Rule: landmark-one-main

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1:

https://www.wyreforestdc.gov.uk/

Rule: landmark-unique

Impact: moderate

Failure 1:

Rule: region

Impact: moderate

Failure 1: