Focus your efforts on these pages to make the biggest impact (combined ALFA + axe results):
| Page | ALFA Failed | axe Failed | Total Failed | Page Title |
|---|---|---|---|---|
| View Page | 353 | 175 | 528 | Официальный портал Казани |
| View Page | 356 | 111 | 467 | Град Београд: Најважније градске вести, актуелности и догађаји |
| View Page | 199 | 90 | 289 | Inicio - Ayuntamiento de Madrid |
| View Page | 233 | 45 | 278 | El portal web oficial de Barcelona | Ajuntament de Barcelona |
| View Page | 215 | 50 | 265 | https://www.almaty.kz/ |
| View Page | 194 | 70 | 264 | Главная - Официальный сайт администрации Волгограда |
| View Page | 213 | 22 | 235 | Oups! | Ville de Marseille |
| View Page | 153 | 57 | 210 | Муниципальный округ - Главная страница |
| View Page | 160 | 47 | 207 | https://www.sofia.bg/ |
| View Page | 117 | 64 | 181 | Home | Gemeente Amsterdam |
These ALFA accessibility issues appear most frequently across your pages:
| Rule | Pages Affected | Documentation |
|---|---|---|
| SIA-R111: Interactive elements have a sufficient target size | 24 of 40 | View Rule |
| SIA-R66: Text has enhanced contrast with its background | 18 of 40 | View Rule |
| SIA-R73: Text spacing can be adjusted without loss of content | 18 of 40 | View Rule |
| SIA-R57: Landmarks don’t repeat the same content | 15 of 40 | View Rule |
| SIA-R87: First focusable element is a skip link | 14 of 40 | View Rule |
| SIA-R11: Button elements have an accessible name | 11 of 40 | View Rule |
| SIA-R61 | 11 of 40 | View Rule |
| SIA-R69: Text has sufficient contrast with its background | 11 of 40 | View Rule |
| SIA-R74 | 9 of 40 | View Rule |
| SIA-R56: Landmarks with the same role are distinguishable | 8 of 40 | View Rule |
💡 Tip: Click on the rule documentation links to learn how to fix each issue.
These axe accessibility issues appear most frequently across your pages:
| Rule | Pages Affected | Documentation |
|---|---|---|
| region | 26 of 40 | View Rule |
| landmark-one-main | 20 of 40 | View Rule |
| color-contrast | 13 of 40 | View Rule |
| page-has-heading-one | 11 of 40 | View Rule |
| link-name | 11 of 40 | View Rule |
| landmark-unique | 8 of 40 | View Rule |
| html-has-lang | 8 of 40 | View Rule |
| image-alt | 7 of 40 | View Rule |
| heading-order | 5 of 40 | View Rule |
| image-redundant-alt | 4 of 40 | 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).
These HTML patterns cause the same accessibility errors across multiple pages. Fix the pattern once in your codebase to fix it everywhere!
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:
$x('/html')Affected Pages:
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:
$x('/p')Affected Pages:
Scanner: axe Rule: html-has-lang Impact: serious Issue: <html> element must have a lang attribute
HTML Pattern:
<html>
XPath (use in browser DevTools):
html
How to Replicate:
$x('html')Affected Pages:
Scanner: axe Rule: landmark-one-main Impact: moderate Issue: Document should have one main landmark
HTML Pattern:
<html>
XPath (use in browser DevTools):
html
How to Replicate:
$x('html')Affected Pages:
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:
$x('/meta')Affected Pages:
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:
$x('/meta')Affected Pages:
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:
$x('meta[http-equiv="refresh"]')Affected Pages:
Scanner: axe Rule: page-has-heading-one Impact: moderate Issue: Page should contain a level-one heading
HTML Pattern:
<html lang="en">
XPath (use in browser DevTools):
#widgetPosId
How to Replicate:
$x('#widgetPosId')Affected Pages:
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:
$x('html')Affected Pages:
Scanner: axe Rule: region Impact: moderate Issue: All page content should be contained by landmarks
HTML Pattern:
<p>
XPath (use in browser DevTools):
li:nth-child(2) > .llistat > li > p
How to Replicate:
$x('li:nth-child(2) > .llistat > li > p')Affected Pages:
Scanner: axe Rule: landmark-one-main Impact: moderate Issue: Document should have one main landmark
HTML Pattern:
<html lang="kk" class="notranslate">
XPath (use in browser DevTools):
html
How to Replicate:
$x('html')Affected Pages:
Scanner: axe Rule: page-has-heading-one Impact: moderate Issue: Page should contain a level-one heading
HTML Pattern:
<html lang="kk" class="notranslate">
XPath (use in browser DevTools):
html
How to Replicate:
$x('html')Affected Pages:
Scanner: ALFA
Rule: SIA-R73: Text spacing can be adjusted without loss of content
Issue: The line height of the paragraph is normal which will result in a line height of less than 1.5
HTML Pattern:
<p>You don't have permission to access this resource.</p>
XPath (use in browser DevTools):
/p
How to Replicate:
$x('/p')Affected Pages:
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>
<h1>Forbidden</h1>
<p>You don't have permission to access this resource.</p>
</body></html>
XPath (use in browser DevTools):
html
How to Replicate:
$x('html')Affected Pages:
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>
<h1>Forbidden</h1>
<p>You don't have permission to access this resource.</p>
</body></html>
XPath (use in browser DevTools):
html
How to Replicate:
$x('html')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.
Complete scan results for all tested pages:
| Submitted URL | Final URL | Status | HTTP | Redirected | Time (ms) | ALFA Pass | ALFA Fail | axe Pass | axe Fail | Notes |
|---|---|---|---|---|---|---|---|---|---|---|
| https://www.london.gov.uk/  | https://www.london.gov.uk/%20%20%EF%BF%BC | FAIL | 404 | no | 946 | 1475 | 21 | 734 | 1 | Sorry - page not found | London City Hall |
| ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R43, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content) | ||||||||||
| axe failed rules: svg-img-alt | ||||||||||
| https://www.berlin.de/  | https://www.berlin.de/%20%20%ef%bf%bc | FAIL | 410 | yes | 817 | 13 | 1 | 9 | 3 | 410 Gone |
| ALFA failed rules: SIA-R87 (First focusable element is a skip link) | ||||||||||
| axe failed rules: landmark-one-main, region | ||||||||||
| https://www.madrid.es/portal/site/munimadrid | https://www.madrid.es/portal/site/munimadrid | OK | 200 | no | 205 | 1452 | 199 | 1089 | 90 | Inicio - Ayuntamiento de Madrid |
| ALFA failed rules: SIA-R110, SIA-R111 (Interactive elements have a sufficient target size), SIA-R18 (ARIA states are consistent with element semantics), SIA-R21, 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-R72, SIA-R73 (Text spacing can be adjusted without loss of content), 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-attr, aria-prohibited-attr, aria-required-children, aria-required-parent, aria-roles, aria-valid-attr-value, image-redundant-alt, listitem, region, scope-attr-valid | ||||||||||
| https://kyivcity.gov.ua/  | https://kyivcity.gov.ua/%20%20%EF%BF%BC | FAIL | 404 | no | 206 | 47 | 3 | 54 | 7 | Kyivcity - NotFound |
| ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R59 | ||||||||||
| axe failed rules: button-name, landmark-one-main, page-has-heading-one, region | ||||||||||
| https://www.almaty.kz/ | https://www.almaty.kz/ | OK | 200 | no | 1613 | 859 | 215 | 875 | 50 | |
| ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R11 (Button elements have an accessible name), 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-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-R74, SIA-R75, SIA-R80 (ASCII art has a text alternative) | ||||||||||
| axe failed rules: color-contrast, document-title, heading-order, landmark-one-main, landmark-unique, link-name, region | ||||||||||
| https://www.paris.fr/  | https://www.paris.fr/%20%20%EF%BF%BC | FAIL | 404 | no | 534 | 1567 | 38 | 1384 | 5 | Erreur 404 - Ville de Paris |
| ALFA failed rules: SIA-R11 (Button elements have an accessible name), 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-R64, SIA-R66 (Text has enhanced contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content) | ||||||||||
| axe failed rules: empty-heading, label-title-only, landmark-unique, link-name | ||||||||||
| https://www.wien.gv.at/  | https://www.wien.gv.at/%20%20%ef%bf%bc/ | FAIL | 404 | yes | 2183 | 27 | 10 | 24 | 6 | Stadt Wien - Offizielle & aktuelle Infos und Services der Wiener Stadtverwaltung - startseite.wien.gv.at |
| ALFA failed rules: SIA-R4 (Page has a descriptive title), 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, html-has-lang, landmark-one-main, region | ||||||||||
| https://www.hamburg.de/  | https://www.hamburg.de/%20%20%EF%BF%BC | FAIL | 400 | no | 750 | 10 | 2 | 8 | 2 | HTTP Status 400 – Bad Request |
| ALFA failed rules: SIA-R78 (Headings of same level have text content between them), SIA-R87 (First focusable element is a skip link) | ||||||||||
| axe failed rules: landmark-one-main, region | ||||||||||
| https://um.warszawa.pl/  | https://um.warszawa.pl/%20%20%EF%BF%BC | FAIL | - | no | 990 | 0 | 0 | 0 | 0 | fetch failed |
| https://www.barcelona.cat/ca | https://www.barcelona.cat/ca | OK | 200 | no | 392 | 1829 | 233 | 1332 | 45 | El portal web oficial de Barcelona | Ajuntament de Barcelona |
| ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R12 (Links have an accessible name), SIA-R13, 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-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) | ||||||||||
| axe failed rules: aria-progressbar-name, aria-prohibited-attr, button-name, color-contrast, frame-title, html-lang-valid, image-alt, landmark-no-duplicate-banner, landmark-unique, link-name, region, tabindex | ||||||||||
| https://budapest.hu/  | https://budapest.hu/%20%20%EF%BF%BC | OK | 200 | no | 705 | 40 | 3 | 35 | 3 | Budapest portál |
| ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74 | ||||||||||
| axe failed rules: landmark-one-main, region | ||||||||||
| https://www.novo-sibirsk.ru/  | https://www.novo-sibirsk.ru/%20%20%EF%BF%BC | FAIL | 404 | no | 888 | 41 | 4 | 34 | 5 | |
| ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content) | ||||||||||
| axe failed rules: document-title, html-has-lang, landmark-one-main, region | ||||||||||
| https://stadt.muenchen.de/rathaus.html  | https://stadt.muenchen.de/rathaus.html%20%20%EF%BF%BC | OK | 200 | no | 2095 | 1642 | 56 | 884 | 6 | Rathaus – Landeshauptstadt München |
| ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R40, 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) | ||||||||||
| axe failed rules: color-contrast, landmark-unique, region | ||||||||||
| https://www.grandlyon.com/  | https://www.grandlyon.com/%20%20%EF%BF%BC | FAIL | 404 | no | 496 | 501 | 65 | 427 | 7 | Oups ! Cette page n'existe pas… ou plus - La Métropole de Lyon |
| ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R43, SIA-R56 (Landmarks with the same role are distinguishable), SIA-R66 (Text has enhanced contrast with its background), SIA-R87 (First focusable element is a skip link) | ||||||||||
| axe failed rules: label-title-only, landmark-unique, svg-img-alt | ||||||||||
| https://praha.eu/  | https://praha.eu/%20%20%EF%BF%BC | FAIL | 404 | no | 4875 | 590 | 47 | 468 | 4 | Stránka nenalezena - Praha - MHMP |
| 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-R87 (First focusable element is a skip link), SIA-R95 | ||||||||||
| axe failed rules: landmark-main-is-top-level, landmark-no-duplicate-main, landmark-unique, page-has-heading-one | ||||||||||
| https://kzn.ru/ | https://kzn.ru/ | OK | 200 | no | 731 | 1773 | 353 | 1342 | 175 | Официальный портал Казани |
| ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R17, 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-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-R83 (Text can be resized to 200% without loss of content) | ||||||||||
| axe failed rules: aria-hidden-focus, color-contrast, heading-order, image-alt, image-redundant-alt, landmark-one-main, link-name, page-has-heading-one, region | ||||||||||
| https://basra.gov.iq/  | https://basra.gov.iq/%20%20%EF%BF%BC | FAIL | 404 | no | 622 | 65 | 2 | 62 | 1 | الصفحة غير موجودة. – ديوان محافظة البصرة |
| ALFA failed rules: SIA-R9, SIA-R96 | ||||||||||
| axe failed rules: meta-refresh | ||||||||||
| https://be.brussels/en | https://be.brussels/en | OK | 200 | no | 1451 | 646 | 35 | 449 | 0 | Welcome on the website of the Brussels-Capital Region | Brussels-Capital Region |
| ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size) | ||||||||||
| https://www.sofia.bg | https://www.sofia.bg/ | FAIL | 403 | no | 1653 | 1104 | 160 | 1320 | 47 | |
| ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R2 (HTML elements have a valid lang attribute), SIA-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-R78 (Headings of same level have text content between them), SIA-R83 (Text can be resized to 200% without loss of content) | ||||||||||
| axe failed rules: heading-order, image-alt, link-name, page-has-heading-one, region | ||||||||||
| https://admgor.nnov.ru/  | https://admgor.nnov.ru/%20%20%EF%BF%BC | FAIL | 404 | no | 983 | 773 | 121 | 894 | 33 | Ошибка #404 - Официальный сайт администрации города Нижнего Новгорода |
| ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R3 (lang attribute has a valid language code), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R62 (Links are visually distinguishable from surrounding text), SIA-R66 (Text has enhanced contrast with its background), SIA-R68 (Accessible name contains the visible label text), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74 | ||||||||||
| axe failed rules: aria-allowed-role, color-contrast, link-name, list, region | ||||||||||
| https://www.beograd.rs/ | https://www.beograd.rs/ | OK | 200 | no | 1015 | 1176 | 356 | 869 | 111 | Град Београд: Најважније градске вести, актуелности и догађаји |
| ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R110, SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R13, SIA-R2 (HTML elements have a valid lang attribute), SIA-R21, SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R72, SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74 | ||||||||||
| axe failed rules: aria-allowed-attr, aria-allowed-role, aria-required-children, aria-roles, color-contrast, frame-title, image-redundant-alt, landmark-unique, link-name, meta-viewport-large, region | ||||||||||
| https://www.gov.kz/memleket/entities/shymkent  | https://www.gov.kz/memleket/entities/shymkent%20%20%EF%BF%BC | OK | 200 | no | 1477 | 5 | 2 | 7 | 2 | GOV.KZ – Единая платформа интернет-ресурсов государственных органов (ЕПИР ГО) |
| ALFA failed rules: SIA-R59, SIA-R87 (First focusable element is a skip link) | ||||||||||
| axe failed rules: landmark-one-main, page-has-heading-one | ||||||||||
| https://www.admkrsk.ru/Pages/default.aspx | https://www.admkrsk.ru/Pages/default.aspx | OK | 200 | no | 7278 | 0 | 0 | 1204 | 30 | Timeout exceeded while waiting for the document to load |
| axe failed rules: color-contrast, frame-title, landmark-one-main, page-has-heading-one, region | ||||||||||
| https://www.stadt-koeln.de/  | https://www.stadt-koeln.de/%20%20%EF%BF%BC | FAIL | 403 | no | 591 | 14 | 3 | 7 | 4 | 403 Forbidden |
| ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link) | ||||||||||
| axe failed rules: html-has-lang, landmark-one-main, region | ||||||||||
| https://www.gov.kz/memleket/entities/astana  | https://www.gov.kz/memleket/entities/astana%20%20%EF%BF%BC | OK | 200 | no | 1208 | 5 | 2 | 7 | 2 | GOV.KZ – Единая платформа интернет-ресурсов государственных органов (ЕПИР ГО) |
| ALFA failed rules: SIA-R59, SIA-R87 (First focusable element is a skip link) | ||||||||||
| axe failed rules: landmark-one-main, page-has-heading-one | ||||||||||
| https://www.voronezh-city.ru/  | https://voronezh-city.gosuslugi.ru/ | OK | 200 | yes | 2250 | 1493 | 153 | 1277 | 57 | Муниципальный округ - Главная страница |
| ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R13, SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R47, SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R64, 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, empty-heading, frame-title, image-alt, image-redundant-alt, link-name, meta-viewport, page-has-heading-one, region | ||||||||||
| https://www.volgadmin.ru/d/Home/Index | https://www.volgadmin.ru/d/Home/Index | OK | 200 | no | 4184 | 690 | 194 | 470 | 70 | Главная - Официальный сайт администрации Волгограда |
| ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R12 (Links have an accessible name), SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R57 (Landmarks don’t repeat the same content), SIA-R59, 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) | ||||||||||
| axe failed rules: aria-input-field-name, aria-required-children, button-name, color-contrast, image-alt, label, landmark-one-main, link-name, page-has-heading-one, region | ||||||||||
| https://start.stockholm/  | https://start.stockholm/%20%20%EF%BF%BC | FAIL | 404 | no | 1270 | 30 | 1 | 39 | 2 | Ett fel inträffade |
| ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size) | ||||||||||
| axe failed rules: landmark-one-main, region | ||||||||||
| https://www.amsterdam.nl/ | https://www.amsterdam.nl/ | OK | 200 | no | 178 | 815 | 117 | 590 | 64 | Home | Gemeente Amsterdam |
| ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61 | ||||||||||
| axe failed rules: color-contrast, landmark-one-main, region | ||||||||||
| https://www.comune.napoli.it/  | https://www.comune.napoli.it/%20%20%EF%BF%BC | FAIL | 403 | no | 411 | 23 | 3 | 18 | 5 | 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 | ||||||||||
| https://www.marseille.fr/  | https://www.marseille.fr/%20%20%EF%BF%BC | FAIL | 404 | no | 1445 | 871 | 213 | 685 | 22 | Oups! | Ville de Marseille |
| ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, SIA-R12 (Links have an accessible name), SIA-R2 (HTML elements have a valid lang attribute), SIA-R3 (lang attribute has a valid language code), SIA-R53 (Headings follow a logical hierarchy), SIA-R56 (Landmarks with the same role are distinguishable), SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R66 (Text has enhanced contrast with its background), SIA-R69 (Text has sufficient contrast with its background), SIA-R73 (Text spacing can be adjusted without loss of content) | ||||||||||
| axe failed rules: button-name, color-contrast, heading-order, image-alt, label-title-only, landmark-unique, link-name, list, region | ||||||||||
| https://www.comune.torino.it/ | https://www.comune.torino.it/ | OK | 200 | no | 1058 | 2655 | 128 | 2186 | 2 | Home | Città di Torino |
| ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R18 (ARIA states are consistent with element semantics), SIA-R46, SIA-R57 (Landmarks don’t repeat the same content), SIA-R61, SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R74, SIA-R78 (Headings of same level have text content between them), SIA-R83 (Text can be resized to 200% without loss of content) | ||||||||||
| axe failed rules: page-has-heading-one, region | ||||||||||
| https://www.saratovmer.ru/  | https://www.saratovmer.ru/%20%20%EF%BF%BC | FAIL | 404 | no | 1076 | 57 | 23 | 56 | 13 | Страница не найдена |
| ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R2 (HTML elements have a valid lang attribute), SIA-R4 (Page has a descriptive title), 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: color-contrast, html-has-lang, image-alt, landmark-one-main, region | ||||||||||
| https://www.krakow.pl/ | https://www.krakow.pl/ | OK | 200 | no | 2083 | 3 | 4 | 2 | 4 | Oficjalny serwis miejski - Oficjalny serwis miejski - Magiczny Kraków |
| ALFA failed rules: SIA-R1 (id attributes are unique within the document), SIA-R4 (Page has a descriptive title), SIA-R59, SIA-R87 (First focusable element is a skip link) | ||||||||||
| axe failed rules: document-title, html-has-lang, landmark-one-main, page-has-heading-one | ||||||||||
| https://frankfurt.de/  | https://frankfurt.de/%20%20%EF%BF%BC | FAIL | 403 | no | 308 | 64 | 2 | 62 | 1 | Just a moment… |
| ALFA failed rules: SIA-R9, SIA-R96 | ||||||||||
| axe failed rules: meta-refresh | ||||||||||
| https://www.zagreb.hr/  | https://www.zagreb.hr/%20%20%EF%BF%BC | FAIL | 404 | no | 449 | 23 | 3 | 17 | 4 | 404 - File or directory not found. |
| ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R78 (Headings of same level have text content between them), SIA-R87 (First focusable element is a skip link) | ||||||||||
| axe failed rules: html-has-lang, landmark-one-main, region | ||||||||||
| https://www.oslo.kommune.no/  | https://www.oslo.kommune.no/%20%20%EF%BF%BC | FAIL | 403 | no | 638 | 14 | 3 | 7 | 4 | 403 Forbidden |
| ALFA failed rules: SIA-R4 (Page has a descriptive title), SIA-R73 (Text spacing can be adjusted without loss of content), SIA-R87 (First focusable element is a skip link) | ||||||||||
| axe failed rules: html-has-lang, landmark-one-main, region | ||||||||||
| https://zp.gov.ua/  | https://zp.gov.ua/%20%20%EF%BF%BC | FAIL | 404 | no | 704 | 558 | 92 | 389 | 5 | Сторінку не знайдено |
| ALFA failed rules: SIA-R11 (Button elements have an accessible name), SIA-R111 (Interactive elements have a sufficient target size), SIA-R53 (Headings follow a logical hierarchy), SIA-R72, 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 | ||||||||||
| https://www.bremen.de/  | https://www.bremen.de/%20%20%EF%BF%BC | FAIL | 403 | no | 357 | 64 | 2 | 62 | 1 | Just a moment… |
| ALFA failed rules: SIA-R9, SIA-R96 | ||||||||||
| axe failed rules: meta-refresh | ||||||||||
| https://www.hel.fi/fi | https://www.hel.fi/fi | OK | 200 | no | 716 | 1560 | 32 | 147 | 0 | Etusivu | Helsingin kaupunki |
| ALFA failed rules: SIA-R111 (Interactive elements have a sufficient target size), SIA-R113, 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) |
Failure 1:
<a class="u-u-group u-space-x-2" href="/">...</a>/a[@class="u-u-group u-space-x-2"]Failure 2:
<a href="/who-we-are" class="u-font-normal"> Who we are </a>/a[@class="u-font-normal"]Failure 3:
<a href="/find-job-city-hall" class="u-font-normal"> Jobs </a>/a[@class="u-font-normal"]Failure 4:
<a href="/who-we-are/city-halls-buildings-and-squares/venue-hire" class="u-font-normal"> Venue hire </a>/a[@class="u-font-normal"]Failure 5:
<a href="/contact-or-visit-city-hall" class="u-font-normal"> Contact us </a>/a[@class="u-font-normal"]… and 13 more failures for this rule
Failure 1:
<svg> element does not have an accessible name<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="simple-icons-icon simple-icons-icon__linkedin" focusable="false">...</svg>/svg[@class="simple-icons-icon simple-icons-icon__linkedin"]Failure 1:
Failure 1:
<p>© Copyright Greater London Authority 2025</p>/pFailure 1:
Failure 1:
Failure 2:
Failure 1:
<button id="iam-cookie-control-modal-action-management-primary" class="iam-cookie-control-modal-action-primary">Configurar cookies</button>/button[@id="iam-cookie-control-modal-action-management-primary"]Failure 2:
<button id="iam-cookie-control-modal-action-secondary" class="iam-cookie-control-modal-action-secondary">Rechazar todas</button>/button[@id="iam-cookie-control-modal-action-secondary"]Failure 3:
<button id="iam-cookie-control-modal-action-primary" class="iam-cookie-control-modal-action-primary">Aceptar todas</button>/button[@id="iam-cookie-control-modal-action-primary"]Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 1:
Failure 2:
Failure 1:
<script src="https://cdn-eu.readspeaker.com/script/13230/webReader/webReader.js?pids=wr" type="text/javascript" id="rs_req_Init" />/script[@id="rs_req_Init"]Failure 2:
<script src="https://cdn-eu.readspeaker.com/script/13230/webReader/webReader.js?pids=wr" type="text/javascript" id="rs_req_Init" />/script[@id="rs_req_Init"]Failure 1:
<li class="bg-tab_arrow first active col-md-3 col-sm-4 col-xs-6">...</li>/li[@class="bg-tab_arrow first active col-md-3 col-sm-4 col-xs-6"]Failure 2:
<a href="#tab-para_ti" aria-controls="tab-para_ti" role="tab" data-toggle="tab">Para ti</a>/aFailure 3:
<li class="col-md-3 col-sm-4 col-xs-6">...</li>/li[@class="col-md-3 col-sm-4 col-xs-6"]Failure 4:
<a href="#tab-en_tu_distrito" aria-controls="tab-en_tu_distrito" role="tab" data-toggle="tab">En tu distrito</a>/aFailure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 130 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 7 more failures for this rule
Failure 1:
<tr>...</tr>/trFailure 2:
<tr>...</tr>/trFailure 3:
<ul class="nav nav-tabs nav-tabs-type2" role="tablist">...</ul>/ul[@class="nav nav-tabs nav-tabs-type2"]Failure 1:
<p class="month-today">Febrero</p>/p[@class="month-today"]Failure 1:
<p>...</p>/pFailure 2:
<p>...</p>/pFailure 3:
<p>...</p>/pFailure 4:
<p class="vertical-middle">...</p>/p[@class="vertical-middle"]Failure 5:
<p class="vertical-middle">...</p>/p[@class="vertical-middle"]… and 18 more failures for this rule
Failure 1:
<p class="num-today">23</p>/p[@class="num-today"]Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 1 more failures for this rule
Failure 1:
Failure 1:
<a href="/">на головну</a>/aFailure 1:
<button type="submit" class="header__search-btn">...</button>/button[@class="header__search-btn"]Failure 1:
Failure 1:
<title> element has no text contentFailure 1:
<a href="https://www.almaty.kz/">...</a>/aFailure 2:
<a href="https://www.almaty.kz/">...</a>/aFailure 1:
<a class="penci-topbar-post-title penci-disable-uppercase" href="https://www.almaty.kz/v-almaty-strojat-vodoprovod-kotoryj-obespechit-vodoj-mkr-ermensaj-i-zhilye-kompleksy-bostandykskogo-rajona/">В Алматы строят водопровод, который обеспечит водо...</a>/a[@class="penci-topbar-post-title penci-disable-uppercase"]Failure 2:
<a class="penci-topbar-post-title penci-disable-uppercase" href="https://www.almaty.kz/v-almaty-startovala-dekada-alma-love-ko-dnju-molodezhi/">В Алматы стартовала декада «Alma Love» ко Дню моло...</a>/a[@class="penci-topbar-post-title penci-disable-uppercase"]Failure 3:
<a class="penci-topbar-post-title penci-disable-uppercase" href="https://www.almaty.kz/darhan-satybaldy-oznakomilsja-s-hodom-stroitelstva-zelenoj-zony-severnee-parka-juzhnyj/">Дархан Сатыбалды ознакомился с ходом строительства...</a>/a[@class="penci-topbar-post-title penci-disable-uppercase"]Failure 4:
<a class="penci-topbar-post-title penci-disable-uppercase" href="https://www.almaty.kz/v-almaty-profinansirovali-zapusk-pervogo-v-kazahstane-proizvodstva-trubchatyh-jelektronagrevatelej/">В Алматы профинансировали запуск первого в Казахст...</a>/a[@class="penci-topbar-post-title penci-disable-uppercase"]Failure 5:
<a class="penci-topbar-post-title penci-disable-uppercase" href="https://www.almaty.kz/almatinskie-teatry-triumfalno-vystupili-na-krupnejshem-teatralnom-festivale-mira-avignon-off-2025/">Алматинские театры триумфально выступили на крупне...</a>/a[@class="penci-topbar-post-title penci-disable-uppercase"]… and 18 more failures for this rule
Failure 1:
<a href="https://www.almaty.kz/v-almaty-startovala-dekada-alma-love-ko-dnju-molodezhi/" title="В Алматы стартовала декада «Alma Love» ко Дню молодежи" class="pcbg-bgoverlaytext active-overlay item-hover" />/a[@class="pcbg-bgoverlaytext active-overlay item-hover"]Failure 1:
<div id="top-search" class="pc-builder-element penci-top-search pcheader-icon top-search-classes ">...</div>/div[@id="top-search"]Failure 2:
<div id="top-search" class="pc-builder-element penci-top-search pcheader-icon top-search-classes ">...</div>/div[@id="top-search"]Failure 1:
<h3 class="inner-arrow">...</h3>/h3[@class="inner-arrow"]Failure 1:
navigation have the same name.Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 112 more failures for this rule
Failure 1:
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 23 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 23 more failures for this rule
Failure 1:
<p>В Алматы началась праздничная декада «Alma Love», ...</p>/pFailure 2:
<p>Общественная приемная акимата города Алматы</p>/pFailure 3:
<p>...</p>/pFailure 4:
<p>...</p>/pFailure 5:
<p>...</p>/pFailure 1:
<span class="headline-title nticker-style-1 penci-enable-uppercase">Top Posts</span>/span[@class="headline-title nticker-style-1 penci-enable-uppercase"]Failure 1:
<p>Общественная приемная акимата города Алматы</p>/pFailure 2:
<p>...</p>/pFailure 3:
<p>...</p>/pFailure 4:
<p>...</p>/pFailure 1:
<a id="home_banner_link" target="_blank" href="https://www.paris.fr/dossiers/elections-mode-d-emploi-pour-s-inscrire-et-voter-261">...</a>/a[@id="home_banner_link"]Failure 2:
<a class="paris-footer-newsletter-link" href="/newsletter"> </a>/a[@class="paris-footer-newsletter-link"]Failure 1:
<a class="profile-link" id="profile_pro" href="/professionnels">...</a>/a[@id="profile_pro"]Failure 2:
<a class="profile-link" id="profile_associations" href="/associations">...</a>/a[@id="profile_associations"]Failure 3:
<a class="profile-link" id="profile_jeunes" href="/jeunes">...</a>/a[@id="profile_jeunes"]Failure 4:
<a class="social-link" target="_blank" href="https://www.instagram.com/paris_maville/">...</a>/a[@class="social-link"]Failure 5:
<a class="social-link" target="_blank" href="https://www.linkedin.com/company/villedeparis/">...</a>/a[@class="social-link"]… and 12 more failures for this rule
Failure 1:
navigation have the same name.Failure 1:
Failure 1:
Failure 1:
<h3 class="paris-card-title" />/h3[@class="paris-card-title"]Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 4 more failures for this rule
Failure 1:
<p class="title is-level-4"> Vous êtes... </p>/p[@class="title is-level-4"]Failure 2:
<p class="profile-text">Accédez à des actualités et informations pratiques...</p>/p[@class="profile-text"]Failure 3:
<p class="paris-footer-newsletter-text"> Recevez directement par email l'act...</p>/p[@class="paris-footer-newsletter-text"]Failure 4:
<p class="social-title paris-footer-social-title title is-level-4"> Sur les réseaux </p>/p[@class="social-title paris-footer-social-title title is-level-4"]Failure 5:
<p class="title is-level-4"> Une question ? </p>/p[@class="title is-level-4"]… and 1 more failures for this rule
Failure 1:
lang attribute is either missing, empty, or only whitespace<html>...</html>/htmlFailure 1:
Failure 2:
Failure 3:
Failure 1:
Failure 2:
Failure 3:
Failure 1:
normal which will result in a line height of less than 1.5<p>HTTP 500 Internal Server Error.</p>/pFailure 2:
normal which will result in a line height of less than 1.5<p class="errinf">...</p>/p[@class="errinf"]Failure 1:
Failure 1:
<h1>HTTP Status 400 – Bad Request</h1>/h1Failure 1:
Failure 1:
<a id="lupaCerca" href="javascript:void(0);" class="js_search_icon" />/a[@id="lupaCerca"]Failure 1:
<button id="bcnbrand-lang-toggle" class="bcnbrand-dropdown-toggle bcnbrand-nav-link plausible-event-name=barra-idioma-desplegar" aria-expanded="false" aria-controls="bcnbrand-language-dropdown-list" aria-label="Català (Canviar idioma)">...</button>/button[@id="bcnbrand-lang-toggle"]Failure 2:
<button id="bcnbrand-search-toggle" class="bcnbrand-dropdown-toggle bcnbrand-nav-link plausible-event-name=barra-cerca-desplegar" aria-expanded="false" aria-controls="bcnbrand-search-menu" aria-describedby="tooltip-search">...</button>/button[@id="bcnbrand-search-toggle"]Failure 3:
<button id="bcnbrand-shortcuts-toggle" class="bcnbrand-dropdown-toggle bcnbrand-nav-link plausible-event-name=barra-drecera-desplegar" aria-expanded="false" aria-controls="bcnbrand-shortcuts-menu">...</button>/button[@id="bcnbrand-shortcuts-toggle"]Failure 4:
<a class="url-info-carousel" href="https://www.barcelona.cat/museuendins" target="_blank" title="Obre en una finestra nova">...</a>/a[@class="url-info-carousel"]Failure 5:
<button class="slick-next slick-arrow" type="button" style="">Next promotion</button>/button[@class="slick-next slick-arrow"]… and 34 more failures for this rule
Failure 1:
<a id="lupaCerca" href="javascript:void(0);" class="js_search_icon" />/a[@id="lupaCerca"]Failure 1:
<button class="geoLocation" />/button[@class="geoLocation"]Failure 2:
<button class="canviFons" />/button[@class="canviFons"]Failure 3:
<button class="mostraStreetView">...</button>/button[@class="mostraStreetView"]Failure 1:
<iframe> does not have an accessible name<iframe id="i-temps" src="https://ajuntament.barcelona.cat/widgets/temps/v3/?lang=ca" width="142px" height="88px" allowtransparency="true" frameborder="0" scrolling="no" />/iframe[@id="i-temps"]Failure 2:
<iframe> does not have an accessible name<iframe frameborder="0" height="88px" src="https://ajuntament.barcelona.cat/widgets/qualitat-aire/v2/?lang=ca&config=lameva&20240110" width="336px" id="qualitat-aire-i" />/iframe[@id="qualitat-aire-i"]Failure 3:
<iframe> does not have an accessible name<iframe frameborder="0" height="410px" src="https://com-shi-va.barcelona.cat/ca/api/widget/route" width="100%" />/iframeFailure 4:
<iframe> does not have an accessible name<iframe src="https://geoportal.barcelona.cat/PlanolBCN/widget/Widget.aspx?lang=CA" id="iframe-planol" />/iframe[@id="iframe-planol"]Failure 1:
Failure 2:
Failure 1:
<img src="/images/icons/marker.svg" class="img-marker" />/img[@class="img-marker"]Failure 2:
<img src="/images/icons/marker.svg" class="img-marker" />/img[@class="img-marker"]Failure 1:
navigation have the same name.Failure 2:
main have the same name.Failure 3:
region have the same name.Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 76 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 63 more failures for this rule
Failure 1:
Failure 1:
<p class="barcelona-branding-slogan show">El portal oficial de l'Ajuntament de Barcelona</p>/p[@class="barcelona-branding-slogan show"]Failure 2:
<p>Museu Endins us convida a conèixer els espais habi...</p>/pFailure 3:
<p>...</p>/pFailure 4:
normal which will result in a line height of less than 1.5<p class="qualitat-acronym">...</p>/p[@class="qualitat-acronym"]Failure 5:
normal which will result in a line height of less than 1.5<p class="qualitat-aire-estat">Raonablement bona</p>/p[@class="qualitat-aire-estat"]… and 17 more failures for this rule
Failure 1:
<p class="qualitat-acronym">...</p>/p[@class="qualitat-acronym"]Failure 2:
<p class="qualitat-aire-estat">Raonablement bona</p>/p[@class="qualitat-aire-estat"]Failure 3:
<p class="qualitat-acronym">...</p>/p[@class="qualitat-acronym"]Failure 4:
<p class="qualitat-aire-estat">Raonablement bona</p>/p[@class="qualitat-aire-estat"]Failure 5:
<p>Escull on vols anar i nosaltres t'ajudem a arribar...</p>/pFailure 1:
<p class="info_paragraph">...</p>/p[@class="info_paragraph"]Failure 1:
<button class="btn btn-primary btn-big error_four_oh_four_back_button__Bp_V_">Főoldal</button>/button[@class="btn btn-primary btn-big error_four_oh_four_back_button__Bp_V_"]Failure 1:
<p>A keresett oldal nem található!</p>/pFailure 1:
<p>A keresett oldal nem található!</p>/pFailure 1:
<title> elementFailure 1:
lang attribute is either missing, empty, or only whitespace<html>...</html>/htmlFailure 1:
normal which will result in a line height of less than 1.5<p>Возможно, введен неправильный адрес или страница н...</p>/pFailure 2:
normal which will result in a line height of less than 1.5<p>Что можно сделать:</p>/pFailure 1:
<button class="m-search-block__submit" id="sitesearch-submit" type="submit">...</button>/button[@id="sitesearch-submit"]Failure 2:
<a class="mainmenu__menu-item-link dropdown-toggle" role="button" data-bs-display="static" data-bs-toggle="dropdown" aria-expanded="false" href="#" id="navbarDropdown" data-auto-event-observed="true">...</a>/a[@id="navbarDropdown"]Failure 3:
<a class="mainmenu__menu-item-link" href="http://www.muenchen.de/veranstaltungen.html" data-auto-event-observed="true">...</a>/a[@class="mainmenu__menu-item-link"]Failure 4:
<a class="mainmenu__menu-item-link" href="http://www.muenchen.de/freizeit.html" data-auto-event-observed="true">...</a>/a[@class="mainmenu__menu-item-link"]Failure 5:
<a class="mainmenu__menu-item-link" href="http://www.muenchen.de/sehenswuerdigkeiten.html" data-auto-event-observed="true">...</a>/a[@class="mainmenu__menu-item-link"]… and 38 more failures for this rule
Failure 1:
<div class="splide splide--loop splide--ltr splide--draggable is-active is-overflow is-initialized" id="splide01" role="region" aria-roledescription="carousel">...</div>/div[@id="splide01"]Failure 2:
<div class="splide splide--slide splide--ltr splide--draggable is-active is-overflow is-initialized" id="splide02" role="region" aria-roledescription="carousel">...</div>/div[@id="splide02"]Failure 1:
region have the same name.Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 2 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 1:
<a href="/mes-services-au-quotidien/connaitre-ses-aides"> Connaître ses aides </a>/aFailure 2:
<a href="https://www.toodego.com/tableau-de-bord/" target="_blank" class="link-external" title="Suivre ses démarches (nouvelle fenêtre)">...</a>/a[@class="link-external"]Failure 3:
<a href="/mes-services-au-quotidien/contacter-la-metropole/contacter-la-metropole-de-lyon"> Contact </a>/aFailure 4:
<a href="#" class="nav-link dropdown-toggle " id="navbarDropdown-0" aria-expanded="false" data-bs-toggle="dropdown" role="button">...</a>/a[@id="navbarDropdown-0"]Failure 5:
<a href="#" class="nav-link dropdown-toggle " id="navbarDropdown-1" aria-expanded="false" data-bs-toggle="dropdown" role="button">...</a>/a[@id="navbarDropdown-1"]… and 27 more failures for this rule
Failure 1:
<svg> element does not have an accessible name<svg class="icon" alt="Facebook" role="img">...</svg>/svg[@class="icon"]Failure 2:
<svg> element does not have an accessible name<svg alt="Linkedin" role="img" class="icon">...</svg>/svg[@class="icon"]Failure 3:
<svg> element does not have an accessible name<svg alt="Bluesky" role="img" class="icon">...</svg>/svg[@class="icon"]Failure 4:
<svg> element does not have an accessible name<svg alt="Thread" role="img" class="icon">...</svg>/svg[@class="icon"]Failure 5:
<svg> element does not have an accessible name<svg alt="Instagram" role="img" class="icon">...</svg>/svg[@class="icon"]Failure 1:
navigation have the same name.Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 21 more failures for this rule
Failure 1:
Failure 1:
<a class="p-menu-top__link" href="/web/praha/povinne-zverejnovane-informace">Povinně zveřejňované informace</a>/a[@class="p-menu-top__link"]Failure 2:
<a class="p-menu-top__link" href="/web/praha/mestske-casti">Městské části</a>/a[@class="p-menu-top__link"]Failure 3:
<a href="https://praha.eu/o-praze" class="p-nav__link">O Praze</a>/a[@class="p-nav__link"]Failure 4:
<a href="https://praha.eu/sprava-mesta" class="p-nav__link">Správa města</a>/a[@class="p-nav__link"]Failure 5:
<a href="https://praha.eu/potrebuji-resit" class="p-nav__link">Potřebuji řešit</a>/a[@class="p-nav__link"]… and 18 more failures for this rule
Failure 1:
<a aria-label="Volat na číslo" class="contact-phone link-icon" href="tel:+420800100000">...</a>/a[@class="contact-phone link-icon"]Failure 1:
Failure 1:
<div class="portlet-boundary portlet-boundary_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_ portlet-static portlet-static-end portlet-barebone portlet-search-bar " id="p_p_id_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch_">...</div>/div[@id="p_p_id_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch_"]Failure 2:
<span id="p_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch" />/span[@id="p_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch"]Failure 3:
<section class="portlet" id="portlet_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch">...</section>/section[@id="portlet_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch"]Failure 4:
<form action="https://praha.eu/vyhledavani" class="form " data-fm-namespace="_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch_" id="_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch_fm" method="get" name="_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch_fm" role="search">...</form>/form[@id="_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch_fm"]Failure 5:
<input class="field form-control" id="_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch_formDate" name="_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch_formDate" type="hidden" value="1771867036588" />/input[@id="_com_liferay_portal_search_web_search_bar_portlet_SearchBarPortlet_INSTANCE_templateSearch_formDate"]… and 9 more failures for this rule
Failure 1:
main have the same name.Failure 1:
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 1:
Failure 1:
<iframe title="Opens a widget where you can find more information" id="launcher" tabindex="-1" style="color-scheme: light; width: 114px; height: 50px; padding: 0px; margin: 10px 20px; position: fixed; bottom: 30px; overflow: visible; opacity: 0; border: 0px; z-index: 999998; transition-duration: 250ms; transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1); transition-property: opacity, top, bottom; top: -9999px; visibility: hidden;" />/iframe[@id="launcher"]Failure 1:
<a rel="nofollow" href="http://vk.com/kzn" target="_blank" class="socials-block__link socials-block__link-vk" />/a[@class="socials-block__link socials-block__link-vk"]Failure 2:
<a rel="nofollow" href="https://ok.ru/kzn" target="_blank" class="socials-block__link socials-block__link-ok" />/a[@class="socials-block__link socials-block__link-ok"]Failure 3:
<a rel="nofollow" href="https://zen.yandex.ru/id/5d0887379b4ece00afe4664d" target="_blank" class="socials-block__link socials-block__link-zen" />/a[@class="socials-block__link socials-block__link-zen"]Failure 4:
<a rel="nofollow" href="https://www.youtube.com/channel/UC_nhCN0yJtq2DMdKhvNtxIQ" target="_blank" class="socials-block__link socials-block__link-youtube" />/a[@class="socials-block__link socials-block__link-youtube"]Failure 5:
<a rel="nofollow" href="https://t.me/kzn_official" target="_blank" class="socials-block__link socials-block__link-telegram" />/a[@class="socials-block__link socials-block__link-telegram"]… and 26 more failures for this rule
Failure 1:
<a rel="nofollow" href="http://vk.com/kzn" target="_blank" class="socials-block__link socials-block__link-vk" />/a[@class="socials-block__link socials-block__link-vk"]Failure 2:
<a rel="nofollow" href="https://ok.ru/kzn" target="_blank" class="socials-block__link socials-block__link-ok" />/a[@class="socials-block__link socials-block__link-ok"]Failure 3:
<a rel="nofollow" href="https://zen.yandex.ru/id/5d0887379b4ece00afe4664d" target="_blank" class="socials-block__link socials-block__link-zen" />/a[@class="socials-block__link socials-block__link-zen"]Failure 4:
<a rel="nofollow" href="https://www.youtube.com/channel/UC_nhCN0yJtq2DMdKhvNtxIQ" target="_blank" class="socials-block__link socials-block__link-youtube" />/a[@class="socials-block__link socials-block__link-youtube"]Failure 5:
<a rel="nofollow" href="https://t.me/kzn_official" target="_blank" class="socials-block__link socials-block__link-telegram" />/a[@class="socials-block__link socials-block__link-telegram"]… and 28 more failures for this rule
Failure 1:
<a rel="nofollow" href="https://www.kzn.ru/meriya/ispolnitelnyy-komitet/kgoc/redaktsiya-portala-kzn-ru/" target="_blank">Условия использования материалов</a>/aFailure 2:
<a rel="nofollow" href="https://kzn.ru/meriya/ispolnitelnyy-komitet/uits/security/" target="_blank">Политика обработки персональных данных</a>/aFailure 1:
<li style="float: left; list-style: none; position: relative; width: 270px;" class="bx-clone" aria-hidden="true">...</li>/li[@class="bx-clone"]Failure 2:
<li style="float: left; list-style: none; position: relative; width: 270px;" aria-hidden="true">...</li>/liFailure 3:
<li style="float: left; list-style: none; position: relative; width: 270px;" class="bx-clone" aria-hidden="true">...</li>/li[@class="bx-clone"]Failure 4:
<li style="float: left; list-style: none; position: relative; width: 270px; margin-right: 30px;" aria-hidden="true">...</li>/liFailure 5:
<li style="float: left; list-style: none; position: relative; width: 270px; margin-right: 30px;" aria-hidden="true">...</li>/li… and 24 more failures for this rule
Failure 1:
<img src="/upload/iblock/46e/46e2d0714348226e66babe573f6d0f87.gif" />/imgFailure 2:
<img src="/upload/iblock/b0f/07_Internet_priemnaya.jpg" />/imgFailure 3:
<img src="/upload/iblock/36a/01_Narodnyy_kontrol.jpg" />/imgFailure 4:
<img src="/upload/iblock/5ee/Bez-imeni_1.jpg" />/imgFailure 5:
<img src="/upload/iblock/4f1/10_Otkrytaya_Kazan_.jpg" />/img… and 18 more failures for this rule
Failure 1:
<h4>...</h4>/h4Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 103 more failures for this rule
Failure 1:
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 62 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 49 more failures for this rule
Failure 1:
<p class="socials-block__title"> Присоединяйтесь к нам...</p>/p[@class="socials-block__title"]Failure 1:
<p class="socials-block__title"> Присоединяйтесь к нам...</p>/p[@class="socials-block__title"]Failure 1:
<p class="socials-block__title"> Присоединяйтесь к нам...</p>/p[@class="socials-block__title"]Failure 1:
Failure 1:
<meta http-equiv="refresh" content="360" />/metaFailure 1:
<meta http-equiv="refresh" content="360" />/metaFailure 1:
<button aria-label="(en) Switch language" class="styles-module__hC6eaG__trigger" aria-expanded="false" id="lang-switcher-trigger" data-state="closed">...</button>/button[@id="lang-switcher-trigger"]Failure 2:
<a class="styles-module__JXXkPq__link" href="/en/about-region">About the Region</a>/a[@class="styles-module__JXXkPq__link"]Failure 3:
<a class="styles-module__JXXkPq__link" href="/en/international-europe">International, Europe</a>/a[@class="styles-module__JXXkPq__link"]Failure 4:
<a class="styles-module__JXXkPq__link" href="/en/security-prevention">Security, Prevention</a>/a[@class="styles-module__JXXkPq__link"]Failure 5:
<a class="styles-module__JXXkPq__link" href="/en/taxes-finances">Taxes, Funding, Grants</a>/a[@class="styles-module__JXXkPq__link"]… and 30 more failures for this rule
Failure 1:
<a class="nav-link" role="link" aria-haspopup="false" href="/web/search-site/search-in-all-sites">...</a>/a[@class="nav-link"]Failure 2:
<a href="/development-of-regions-2021-2027">...</a>/aFailure 3:
<a href="/national-recovery-resilience-plan">...</a>/aFailure 4:
<a href="/sofia-up">...</a>/aFailure 5:
<a href="https://www.sofia.bg/en/w/7155704">...</a>/a… and 23 more failures for this rule
Failure 1:
<a class="nav-link text-dark font-weight-bold" role="link" aria-haspopup="false" href="/">СТОЛИЧНА ОБЩИНА</a>/a[@class="nav-link text-dark font-weight-bold"]Failure 2:
<a class="nav-link text-primary" role="link" aria-haspopup="false" href="/web/mayor-of-sofia">Администрация</a>/a[@class="nav-link text-primary"]Failure 3:
<a class="nav-link text-primary" role="link" aria-haspopup="false" href="https://council.sofia.bg">Столичен общински съвет</a>/a[@class="nav-link text-primary"]Failure 4:
<a class="nav-link" role="link" aria-haspopup="false" href="/web/search-site/search-in-all-sites">...</a>/a[@class="nav-link"]Failure 5:
<a class="nav-link text-white" role="link" aria-haspopup="false" href="/en/web/sofia-municipality/">EN</a>/a[@class="nav-link text-white"]… and 28 more failures for this rule
Failure 1:
<img src="/image/journal/article?img_id=74807750&t=1769953119014" />/imgFailure 2:
<img src="/image/journal/article?img_id=75202720&t=1771842285380" />/imgFailure 3:
<img src="/image/journal/article?img_id=75202668&t=1771842256672" />/imgFailure 4:
<img src="/image/journal/article?img_id=75202625&t=1771842238456" />/imgFailure 5:
<img src="/image/journal/article?img_id=75202502&t=1771838917023" />/img… and 3 more failures for this rule
Failure 1:
<h5>...</h5>/h5Failure 2:
<h5>...</h5>/h5Failure 3:
<h5>...</h5>/h5Failure 4:
<h5>...</h5>/h5Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 9 more failures for this rule
Failure 1:
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 21 more failures for this rule
Failure 1:
<h4 class="fade-in one">Избори - НС 2026</h4>/h4[@class="fade-in one"]Failure 2:
<h4 class="fade-in one">Контактен център</h4>/h4[@class="fade-in one"]Failure 3:
<h4 class="fade-in one">Изхвърляне на отпадъци</h4>/h4[@class="fade-in one"]Failure 4:
<h4 class="fade-in one">Ремонти и промени в движението</h4>/h4[@class="fade-in one"]Failure 5:
<h4 class="fade-in one">Транспорт</h4>/h4[@class="fade-in one"]… and 35 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 1 more failures for this rule
Failure 1:
<a class="toggle-top-layer link-list-sites" data-href="panelSite" href="#">...</a>/a[@class="toggle-top-layer link-list-sites"]Failure 2:
<a class="footer-social__link" target="_blank" href="https://vk.com/nn_admgorod">...</a>/a[@class="footer-social__link"]Failure 1:
<a href="#" class="btn-lang dropdown-toggle" data-toggle="dropdown">...</a>/a[@class="btn-lang dropdown-toggle"]Failure 2:
<a href="#" data-href="panelSearch" class="toggle-top-layer toggle-search-panel">...</a>/a[@class="toggle-top-layer toggle-search-panel"]Failure 3:
<a href="/cabinet/default/login-with-email">...</a>/aFailure 4:
<a href="/reception/reception-form">...</a>/aFailure 5:
<a class="home" href="/">...</a>/a[@class="home"]… and 13 more failures for this rule
Failure 1:
<a href="tel:+7 (831) 467-10-01">...</a>/aFailure 2:
<a href="tel:+7 (831) 467-10-75">...</a>/aFailure 1:
<input type="text" id="searchform-term" class="form-control" name="SearchForm[term]" value="" placeholder="Введите запрос" />/input[@id="searchform-term"]Failure 2:
<input type="text" id="searchform-begindate" class="form-control input-date date-start" name="SearchForm[beginDate]" value="" style="position: relative; inset: auto;" />/input[@id="searchform-begindate"]Failure 3:
<input type="text" id="searchform-enddate" class="form-control input-date date-end" name="SearchForm[endDate]" value="" style="position: relative; inset: auto;" />/input[@id="searchform-enddate"]Failure 4:
<div class="jq-checkbox all-check checked" id="searchform-all-styler">...</div>/div[@id="searchform-all-styler"]Failure 5:
<input type="checkbox" id="searchform-all" class="all-check" name="SearchForm[all]" value="1" checked="" />/input[@id="searchform-all"]… and 35 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 4 more failures for this rule
Failure 1:
Failure 1:
<a href="https://xn--b1acdfjbh2acclca1a.xn--p1ai/upload/getODA/depdoc104215.html" class="notification__link" target="_blank">политикой в отношении обработки персональных данны...</a>/a[@class="notification__link"]Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 19 more failures for this rule
Failure 1:
<ul class="footer-social">...</ul>/ul[@class="footer-social"]Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 14 more failures for this rule
Failure 1:
<p class="h4 pd-bottom-40">Текущая страница – это сообщение об ошибке «404» и...</p>/p[@class="h4 pd-bottom-40"]Failure 2:
<p class="pd-bottom-20">...</p>/p[@class="pd-bottom-20"]Failure 3:
<p class="notification__text">...</p>/p[@class="notification__text"]Failure 1:
<p class="notification__text">...</p>/p[@class="notification__text"]Failure 1:
<a href="/cir/usluge" to="/cir/usluge" class="sidebar-map__link" />/a[@class="sidebar-map__link"]Failure 2:
<a href="/cir/gradski-oglasi" to="/cir/gradski-oglasi" class="sidebar-map__link" />/a[@class="sidebar-map__link"]Failure 1:
Failure 1:
<button class="language-bar__selected"> ћир </button>/button[@class="language-bar__selected"]Failure 2:
<a href="/cir/mape" class="header__maps">...</a>/a[@class="header__maps"]Failure 3:
<button class="header__search">...</button>/button[@class="header__search"]Failure 4:
<a href="/cir/prijava-problema" class="header__report-problem">...</a>/a[@class="header__report-problem"]Failure 5:
<a href="/cir/najave" class="city-news__sidebar-title-link"> Најаве догађаја </a>/a[@class="city-news__sidebar-title-link"]… and 22 more failures for this rule
Failure 1:
<span class="swiper-pagination-bullet swiper-pagination-bullet-active" tabindex="0" role="button" aria-label="Go to slide 1" />/span[@class="swiper-pagination-bullet swiper-pagination-bullet-active"]Failure 2:
<span class="swiper-pagination-bullet" tabindex="0" role="button" aria-label="Go to slide 2" />/span[@class="swiper-pagination-bullet"]Failure 3:
<span class="swiper-pagination-bullet" tabindex="0" role="button" aria-label="Go to slide 3" />/span[@class="swiper-pagination-bullet"]Failure 4:
<span class="swiper-pagination-bullet" tabindex="0" role="button" aria-label="Go to slide 4" />/span[@class="swiper-pagination-bullet"]Failure 5:
<span class="swiper-pagination-bullet" tabindex="0" role="button" aria-label="Go to slide 5" />/span[@class="swiper-pagination-bullet"]… and 9 more failures for this rule
Failure 1:
<iframe> does not have an accessible name<iframe src="https://player.vimeo.com/video/1156814775?h=215bdda91f&autoplay=1&muted=1&loop=1&background=1&title=0&byline=0&portrait=0&responsive=1&badge=0&player_id=0" frameborder="0" allow="autoplay; picture-in-picture; clipboard-write" class="breaking-news-mega__background-iframe" />/iframe[@class="breaking-news-mega__background-iframe"]Failure 1:
<img src="https://static.beogradsad.rs/api/v3/images/60569/thumbnail?ts=2024-12-06T17:10:32" />/imgFailure 2:
<img src="https://static.beogradsad.rs/api/v3/images/60572/thumbnail?ts=2024-12-06T17:10:36" />/imgFailure 3:
<img src="https://static.beogradsad.rs/api/v3/images/60570/thumbnail?ts=2024-12-06T17:10:34" />/imgFailure 4:
<img src="https://static.beogradsad.rs/api/v3/images/60571/thumbnail?ts=2024-12-06T17:10:36" />/imgFailure 5:
<img src="https://static.beogradsad.rs/api/v3/images/60573/thumbnail?ts=2024-12-06T17:10:37" />/img… and 2 more failures for this rule
Failure 1:
Failure 1:
complementary have the same name.Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 124 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 66 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 66 more failures for this rule
Failure 1:
<p class="city-sidebar-widget__subtitle">Иницијативе</p>/p[@class="city-sidebar-widget__subtitle"]Failure 2:
<p class="city-sidebar-widget__subtitle">Иницијативе</p>/p[@class="city-sidebar-widget__subtitle"]Failure 3:
<p class="city-sidebar-widget__subtitle">Иницијативе</p>/p[@class="city-sidebar-widget__subtitle"]Failure 4:
<p class="city-sidebar-widget__subtitle">Иницијативе</p>/p[@class="city-sidebar-widget__subtitle"]Failure 5:
<p class="city-sidebar-widget__subtitle">Иницијативе</p>/p[@class="city-sidebar-widget__subtitle"]… and 2 more failures for this rule
Failure 1:
normal which will result in a line height of less than 1.5<p class="city-news__time">19.02.2026.</p>/p[@class="city-news__time"]Failure 2:
normal which will result in a line height of less than 1.5<p class="city-news__time">26.01.2026.</p>/p[@class="city-news__time"]Failure 3:
normal which will result in a line height of less than 1.5<p class="city-news__time">23.02.2026.</p>/p[@class="city-news__time"]Failure 4:
normal which will result in a line height of less than 1.5<p class="city-news__time">23.02.2026.</p>/p[@class="city-news__time"]Failure 5:
normal which will result in a line height of less than 1.5<p class="city-news__time">23.02.2026.</p>/p[@class="city-news__time"]… and 18 more failures for this rule
Failure 1:
<p class="site-footer__copyright"> Град Београд © 2001-2026. ...</p>/p[@class="site-footer__copyright"]Failure 1:
Failure 1:
Failure 1:
lang attribute is either missing, empty, or only whitespace<html>...</html>/htmlFailure 1:
normal which will result in a line height of less than 1.5<p>You don't have permission to access this resource.</p>/pFailure 1:
Failure 1:
Failure 1:
Failure 1:
<a class="gw-header-icons__link gw-header__link gw-js-main-search-link gw-js-search-link" href="#">...</a>/a[@class="gw-header-icons__link gw-header__link gw-js-main-search-link gw-js-search-link"]Failure 2:
<a target="_blank" href="https://vk.com/petrin_vrn">...</a>/aFailure 3:
<a target="_blank" href="https://t.me/petrin_vrn">...</a>/aFailure 4:
<a class="gw-banner-custom" href="https://www.govvrn.ru/" target="_blank">...</a>/a[@class="gw-banner-custom"]Failure 5:
<a href="https://t.me/petrin_vrn" class="gw-footer-icon__link" target="_blank">...</a>/a[@class="gw-footer-icon__link"]… and 2 more failures for this rule
Failure 1:
<a href="/" class="gw-header__link">...</a>/a[@class="gw-header__link"]Failure 2:
<a class="gw-header-icons__link gw-header__link gw-js-main-search-link gw-js-search-link" href="#">...</a>/a[@class="gw-header-icons__link gw-header__link gw-js-main-search-link gw-js-search-link"]Failure 3:
<a href="#" class="gw-header-icons__link gw-header__link gw-header-icons__glass" data-micromodal-trigger="blind-support">...</a>/a[@class="gw-header-icons__link gw-header__link gw-header-icons__glass"]Failure 4:
<a class="gw-header__link gw-top-nav__item-link gw-top-nav__item-link_active" href="/">Главная</a>/a[@class="gw-header__link gw-top-nav__item-link gw-top-nav__item-link_active"]Failure 5:
<a class="gw-header__link gw-top-nav__item-link " href="/ofitsialno/struktura-munitsipalnogo-obrazovaniya/">Структура муниципального образования</a>/a[@class="gw-header__link gw-top-nav__item-link "]… and 50 more failures for this rule
Failure 1:
<button class="rm-widget-close">...</button>/button[@class="rm-widget-close"]Failure 1:
<iframe> does not have an accessible name<iframe id="widgetPosId" src="https://pos.gosuslugi.ru/og/widgets/view?type=[10,20,30,40,50,80,90,100,110]&fontFamily=Arial&maxPage=5&maxElement=5&updateFrequency=2000&widgetTheme=3&widgetFrameStyle=long-horizontal&level=30&municipality_id=20701000&startTitleColor=000000&startTextColor=666666&startTextBtnColor=FFFFFF&startBtnBgColor=0063B0&widgetBorderColor=e3e8ee&widgetBorderOldPageColor=e3e8ee&logoColor=ffffff&phoneHeaderColor=0B40B3&fillSvgHeadColor=ffffff&backgroundColor=ffffff&typeBgColor=F2F8FC&selectColor=2c8ecc&hoverSelectColor=116ca6&itemColor=354052&hoverItemColor=2c8ecc&backgroundItemColor=f9f9fa&paginationColor=000000&backgroundPaginationColor=2862AC&hoverPaginationColor=2862AC&deviderColor=e3e8ee&itemFs=14&logoFs=16&selectFs=25&startTextFs=18&paginationFs=15&startTitleFs=38&startTextBtnFs=16&widgetBorderFs=1&orgActivity=" width="100%" height="" style="border:0" />/iframe[@id="widgetPosId"]Failure 2:
<iframe> does not have an accessible name<iframe id="widgetPosId" src="https://pos.gosuslugi.ru/og/widgets/view?type=[10,20,30,40,50,80,90,100,110]&fontFamily=Arial&maxPage=5&maxElement=5&updateFrequency=2000&widgetTheme=3&widgetFrameStyle=long-horizontal&level=30&municipality_id=20701000&startTitleColor=000000&startTextColor=666666&startTextBtnColor=FFFFFF&startBtnBgColor=0063B0&widgetBorderColor=e3e8ee&widgetBorderOldPageColor=e3e8ee&logoColor=ffffff&phoneHeaderColor=0B40B3&fillSvgHeadColor=ffffff&backgroundColor=ffffff&typeBgColor=F2F8FC&selectColor=2c8ecc&hoverSelectColor=116ca6&itemColor=354052&hoverItemColor=2c8ecc&backgroundItemColor=f9f9fa&paginationColor=000000&backgroundPaginationColor=2862AC&hoverPaginationColor=2862AC&deviderColor=e3e8ee&itemFs=14&logoFs=16&selectFs=25&startTextFs=18&paginationFs=15&startTitleFs=38&startTextBtnFs=16&widgetBorderFs=1&orgActivity=" width="100%" height="" style="border:0" />/iframe[@id="widgetPosId"]Failure 3:
<iframe> does not have an accessible name<iframe id="rm-widget-iframe" loading="lazy" />/iframe[@id="rm-widget-iframe"]Failure 1:
<img src="/netcat_files/generated/class_settings/img_org/1100x260/2643/bf00ebdf26340f05e2251b2bb7b69425.png?crop=0%3A0%3A0%3A0&hash=00c0969864d1c579d91e83fd9576135e&resize_mode=5&wm_m=0" class="gw-banner-custom__img" />/img[@class="gw-banner-custom__img"]Failure 1:
<iframe id="widgetPosId" src="https://pos.gosuslugi.ru/og/widgets/view?type=[10,20,30,40,50,80,90,100,110]&fontFamily=Arial&maxPage=5&maxElement=5&updateFrequency=2000&widgetTheme=3&widgetFrameStyle=long-horizontal&level=30&municipality_id=20701000&startTitleColor=000000&startTextColor=666666&startTextBtnColor=FFFFFF&startBtnBgColor=0063B0&widgetBorderColor=e3e8ee&widgetBorderOldPageColor=e3e8ee&logoColor=ffffff&phoneHeaderColor=0B40B3&fillSvgHeadColor=ffffff&backgroundColor=ffffff&typeBgColor=F2F8FC&selectColor=2c8ecc&hoverSelectColor=116ca6&itemColor=354052&hoverItemColor=2c8ecc&backgroundItemColor=f9f9fa&paginationColor=000000&backgroundPaginationColor=2862AC&hoverPaginationColor=2862AC&deviderColor=e3e8ee&itemFs=14&logoFs=16&selectFs=25&startTextFs=18&paginationFs=15&startTitleFs=38&startTextBtnFs=16&widgetBorderFs=1&orgActivity=" width="100%" height="" style="border:0" />/iframe[@id="widgetPosId"]Failure 2:
<iframe id="widgetPosId" src="https://pos.gosuslugi.ru/og/widgets/view?type=[10,20,30,40,50,80,90,100,110]&fontFamily=Arial&maxPage=5&maxElement=5&updateFrequency=2000&widgetTheme=3&widgetFrameStyle=long-horizontal&level=30&municipality_id=20701000&startTitleColor=000000&startTextColor=666666&startTextBtnColor=FFFFFF&startBtnBgColor=0063B0&widgetBorderColor=e3e8ee&widgetBorderOldPageColor=e3e8ee&logoColor=ffffff&phoneHeaderColor=0B40B3&fillSvgHeadColor=ffffff&backgroundColor=ffffff&typeBgColor=F2F8FC&selectColor=2c8ecc&hoverSelectColor=116ca6&itemColor=354052&hoverItemColor=2c8ecc&backgroundItemColor=f9f9fa&paginationColor=000000&backgroundPaginationColor=2862AC&hoverPaginationColor=2862AC&deviderColor=e3e8ee&itemFs=14&logoFs=16&selectFs=25&startTextFs=18&paginationFs=15&startTitleFs=38&startTextBtnFs=16&widgetBorderFs=1&orgActivity=" width="100%" height="" style="border:0" />/iframe[@id="widgetPosId"]Failure 1:
<meta> element restricts the ability to zoom<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0" />/metaFailure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 13 more failures for this rule
Failure 1:
Failure 1:
<h2 class="tpl-text-header2" />/h2[@class="tpl-text-header2"]Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 30 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 11 more failures for this rule
Failure 1:
<p style="text-align:center">...</p>/pFailure 2:
<p>Рад приветствовать вас на официальном сайте админи...</p>/pFailure 3:
<p>Все самые актуальные новости о жизни Воронежа, стр...</p>/pFailure 4:
<p>Добро пожаловать!</p>/pFailure 5:
<p style="text-align:right">...</p>/p… and 7 more failures for this rule
Failure 1:
<a href="https://ok.ru/volgadmin" target="_blank">...</a>/aFailure 2:
<a href="https://vk.com/volgadmin" target="_blank">...</a>/aFailure 3:
<a href="https://t.me/volgadmin" target="_blank">...</a>/aFailure 4:
<a href="/">...</a>/aFailure 5:
<a href="/" class="dropdown-toggle" id="topmenu_homelink">...</a>/a[@id="topmenu_homelink"]… and 7 more failures for this rule
Failure 1:
<a href="https://ok.ru/volgadmin" target="_blank">...</a>/aFailure 2:
<a href="https://vk.com/volgadmin" target="_blank">...</a>/aFailure 3:
<a href="https://t.me/volgadmin" target="_blank">...</a>/aFailure 4:
<button data-v-4dfcff7f="" id="widget-pos-open-modal" type="button" class="gosuslugi-pos-og-widget__startBtn new-theme" style="margin-top: 0px;"> Участвовать </button>/button[@id="widget-pos-open-modal"]Failure 5:
<a href="/list/news/admvlg/i29749">На юге Волгограда снесут два расселенных аварийных...</a>/a… and 10 more failures for this rule
Failure 1:
<button id="search_type_ddl" class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">...</button>/button[@id="search_type_ddl"]Failure 1:
<img src="/Content/Socnet/ok.png" />/imgFailure 2:
<img src="/Content/Socnet/vk.png" />/imgFailure 3:
<img src="/Content/Socnet/tel.png" />/imgFailure 4:
<img id="logo" class="img-responsive" src="/Content/Images/src/123.png" />/img[@id="logo"]Failure 5:
<img id="homepage_cs_white" src="/Content/Images/src/icons/Homepage64px.png" />/img[@id="homepage_cs_white"]… and 9 more failures for this rule
Failure 1:
<ul class="dropdown-menu" id="menu-list">...</ul>/ul[@id="menu-list"]Failure 2:
<ul class="dropdown-menu" id="menu-list">...</ul>/ul[@id="menu-list"]Failure 3:
<ul class="dropdown-menu" id="menu-list">...</ul>/ul[@id="menu-list"]Failure 4:
<ul class="dropdown-menu" id="menu-list">...</ul>/ul[@id="menu-list"]Failure 5:
<ul class="dropdown-menu" id="menu-list">...</ul>/ul[@id="menu-list"]… and 13 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 52 more failures for this rule
Failure 1:
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 8 more failures for this rule
Failure 1:
<div class="carousel-inner" role="listbox">...</div>/div[@class="carousel-inner"]Failure 2:
<div class="carousel-inner" role="listbox">...</div>/div[@class="carousel-inner"]Failure 3:
<ol class="carousel-indicators"> ...</ol>/ol[@class="carousel-indicators"]Failure 4:
<div class="carousel-inner" role="listbox">...</div>/div[@class="carousel-inner"]Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 1 more failures for this rule
Failure 1:
<p class="date">18.02.2026 12:00</p>/p[@class="date"]Failure 2:
<p>...</p>/pFailure 3:
<p class="date">13.02.2026 15:20</p>/p[@class="date"]Failure 4:
<p>...</p>/pFailure 5:
<p class="date">06.02.2026 15:30</p>/p[@class="date"]… and 24 more failures for this rule
Failure 1:
<p class="date">18.02.2026 12:00</p>/p[@class="date"]Failure 2:
<p class="date">13.02.2026 15:20</p>/p[@class="date"]Failure 3:
<p class="date">06.02.2026 15:30</p>/p[@class="date"]Failure 4:
<p class="block_title"> НОВОСТИ </p>/p[@class="block_title"]Failure 5:
<p class="date">20.02.2026 17:10</p>/p[@class="date"]… and 15 more failures for this rule
Failure 1:
<input id="searchText" class="form-control " type="text" value="" style="color: silver;" />/input[@id="searchText"]Failure 2:
<div class="carousel-inner" role="listbox">...</div>/div[@class="carousel-inner"]Failure 3:
<div class="carousel-inner" role="listbox">...</div>/div[@class="carousel-inner"]Failure 4:
<div class="carousel-inner" role="listbox">...</div>/div[@class="carousel-inner"]Failure 1:
<a href="/" class="error__link">Gå till startsidan</a>/a[@class="error__link"]Failure 1:
<a href="https://www.amsterdam.nl/leefomgeving/een-melding-doen/" class="ga-tracked">Doe een melding</a>/a[@class="ga-tracked"]Failure 2:
<a href="https://www.amsterdam.nl/parkeren/" class="ga-tracked">Parkeren</a>/a[@class="ga-tracked"]Failure 3:
<a href="https://www.amsterdam.nl/afval/" class="ga-tracked">Afval</a>/a[@class="ga-tracked"]Failure 4:
<a href="https://www.amsterdam.nl/verkiezingen/" class="ga-tracked">Verkiezingen</a>/a[@class="ga-tracked"]Failure 5:
<a href="https://www.amsterdam.nl/belastingen/" class="ga-tracked">Belastingen</a>/a[@class="ga-tracked"]… and 24 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 82 more failures for this rule
Failure 1:
Failure 1:
lang attribute is either missing, empty, or only whitespace<html>...</html>/htmlFailure 1:
, or element.<pre>Generated by cloudfront (CloudFront) Request ID: D...</pre>/preFailure 1:
Failure 1:
<a class="social-media-link-icon--twitter" href="https://x.com/marseille" target="_blank" rel="noopener noreferrer">...</a>/a[@class="social-media-link-icon--twitter"]Failure 2:
<a class="social-media-link-icon--facebook" href="https://www.facebook.com/marseilleville/" target="_blank" rel="noopener noreferrer">...</a>/a[@class="social-media-link-icon--facebook"]Failure 3:
<a class="social-media-link-icon--instagram" href="https://www.instagram.com/villemarseille/" target="_blank" rel="noopener noreferrer">...</a>/a[@class="social-media-link-icon--instagram"]Failure 4:
<a class="social-media-link-icon--youtube" href="https://www.youtube.com/user/VilledeMarseille" target="_blank" rel="noopener noreferrer">...</a>/a[@class="social-media-link-icon--youtube"]Failure 5:
<a class="social-media-link-icon--tiktok" href="https://www.tiktok.com/@villedemarseille" target="_blank" rel="noopener noreferrer">...</a>/a[@class="social-media-link-icon--tiktok"]… and 1 more failures for this rule
Failure 1:
<button name="op" value="Rechercher" type="submit" />/buttonFailure 2:
<a href="?destination=/&_exception_statuscode=404&page=1" title="" class="page-link">2</a>/a[@class="page-link"]Failure 3:
<a href="?destination=/&_exception_statuscode=404&page=2" title="" class="page-link">3</a>/a[@class="page-link"]Failure 4:
<a href="?destination=/&_exception_statuscode=404&page=3" title="" class="page-link">4</a>/a[@class="page-link"]Failure 5:
<a href="?destination=/&_exception_statuscode=404&page=4" title="" class="page-link">5</a>/a[@class="page-link"]… and 41 more failures for this rule
Failure 1:
<button name="op" value="Rechercher" type="submit" />/buttonFailure 1:
<button name="op" value="Rechercher" type="submit" />/buttonFailure 1:
<img src="https://www.marseille.fr/sites/default/files/logo_0.png" width="106" height="69" loading="lazy" />/imgFailure 1:
<nav role="navigation" aria-labelledby="block-vdm-navigationprincipale-menu" id="block-vdm-navigationprincipale" class="block block-menu navigation menu--main">...</nav>/nav[@id="block-vdm-navigationprincipale"]Failure 2:
<ul data-region="primary_menu" id="block-vdm-navigationprincipale" class="clearfix menu menu-level-0">...</ul>/ul[@id="block-vdm-navigationprincipale"]Failure 3:
<svg xmlns="http://www.w3.org/2000/svg" id="Calque_1" data-name="Calque 1" viewBox="0 0 24 24">...</svg>/svg[@id="Calque_1"]Failure 4:
<svg xmlns="http://www.w3.org/2000/svg" id="Calque_1" data-name="Calque 1" viewBox="0 0 24 24" style="fill: #DA1984 !important">...</svg>/svg[@id="Calque_1"]Failure 5:
<svg xmlns="http://www.w3.org/2000/svg" id="Calque_1" data-name="Calque 1" viewBox="0 0 24 24">...</svg>/svg[@id="Calque_1"]… and 30 more failures for this rule
Failure 1:
<h3 class="content_desc"> La situation dans les crèches municipale...</h3>/h3[@class="content_desc"]Failure 1:
navigation have the same name.Failure 1:
Failure 1:
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 58 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 50 more failures for this rule
Failure 1:
<p>...</p>/pFailure 1:
<a href="https://www.facebook.com/cittaditorino" rel="noopener" aria-label="Facebook" class="text-white" target="_blank" title="Attenzione! Il link si apre in una nuova finestra del browser">...</a>/a[@class="text-white"]Failure 2:
<a href="https://www.instagram.com/cittaditorino/" rel="noopener" aria-label="Instagram" class="text-white" target="_blank" title="Attenzione! Il link si apre in una nuova finestra del browser">...</a>/a[@class="text-white"]Failure 3:
<a href="https://www.linkedin.com/company/comune-di-torino" rel="noopener" aria-label="Linkedin" class="text-white" target="_blank" title="Attenzione! Il link si apre in una nuova finestra del browser">...</a>/a[@class="text-white"]Failure 4:
<a href="https://www.comune.torino.it/novita/rss.xml" rel="noopener" aria-label="RSS" class="text-white" target="_blank" title="Attenzione! Il link si apre in una nuova finestra del browser">...</a>/a[@class="text-white"]Failure 5:
<a href="https://www.twitter.com/twitorino" rel="noopener" aria-label="Twitter" class="text-white" target="_blank" title="Attenzione! Il link si apre in una nuova finestra del browser">...</a>/a[@class="text-white"]… and 73 more failures for this rule
Failure 1:
Failure 1:
<th scope="row">IDROGEOLOGICO</th>/thFailure 2:
<th scope="row">IDRAULICO</th>/thFailure 3:
<th scope="row">TEMPORALI</th>/thFailure 4:
<th scope="row">NEVE</th>/thFailure 1:
Failure 1:
Failure 1:
<p class="h3">23/02</p>/p[@class="h3"]Failure 2:
<p class="h3">24/02</p>/p[@class="h3"]Failure 3:
<p class="mb-3 h3">Previsione del 23/02/2026</p>/p[@class="mb-3 h3"]Failure 1:
<p class="card-text px-2 pb-10 mb-10 d-flex ctype-evento">...</p>/p[@class="card-text px-2 pb-10 mb-10 d-flex ctype-evento"]Failure 2:
<p class="card-text px-2 pb-10 mb-10 d-flex ctype-evento">...</p>/p[@class="card-text px-2 pb-10 mb-10 d-flex ctype-evento"]Failure 3:
<p class="card-text px-2 pb-10 mb-10 d-flex ctype-evento">...</p>/p[@class="card-text px-2 pb-10 mb-10 d-flex ctype-evento"]Failure 4:
<p class="card-text px-2 pb-10 mb-10 d-flex ctype-">...</p>/p[@class="card-text px-2 pb-10 mb-10 d-flex ctype-"]Failure 5:
<p class="card-text px-2 pb-10 mb-10 d-flex ctype-">...</p>/p[@class="card-text px-2 pb-10 mb-10 d-flex ctype-"]… and 3 more failures for this rule
Failure 1:
<h2 class="visually-hidden">Immagine</h2>/h2[@class="visually-hidden"]Failure 2:
<h2 class="visually-hidden">Immagine</h2>/h2[@class="visually-hidden"]Failure 3:
<h2 class="visually-hidden">Immagine</h2>/h2[@class="visually-hidden"]Failure 4:
<h2 class="visually-hidden">Immagine</h2>/h2[@class="visually-hidden"]Failure 5:
<h3> Anagrafe </h3>/h3… and 22 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
Failure 1:
<button class="btn btn-search btn-block">Поиск</button>/button[@class="btn btn-search btn-block"]Failure 2:
<a href="/">Главная страница</a>/aFailure 3:
<a href="/sitemap/">Карта сайта</a>/aFailure 4:
<button type="button" id="nca-cookiesaccept-line-accept-btn" class="btn" onclick="ncaCookieAcceptBtn()">Принять</button>/button[@id="nca-cookiesaccept-line-accept-btn"]Failure 1:
<img src="/local/templates/saratovmer/images/logo_sm.png" />/imgFailure 1:
lang attribute is either missing, empty, or only whitespace<html>...</html>/htmlFailure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 5:
… and 2 more failures for this rule
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 1:
<p class="col-margin">...</p>/p[@class="col-margin"]Failure 2:
<p class="col-margin">...</p>/p[@class="col-margin"]Failure 1:
<title> elementFailure 1:
lang attribute is either missing, empty, or only whitespace<html>...</html>/htmlFailure 1:
Failure 1:
Failure 1:
<meta http-equiv="refresh" content="360" />/metaFailure 1:
<meta http-equiv="refresh" content="360" />/metaFailure 1:
lang attribute is either missing, empty, or only whitespace<html xmlns="http://www.w3.org/1999/xhtml">...</html>/htmlFailure 1:
<h3>The resource you are looking for might have been r...</h3>/h3Failure 1:
Failure 1:
lang attribute is either missing, empty, or only whitespace<html>...</html>/htmlFailure 1:
normal which will result in a line height of less than 1.5<p>You don't have permission to access this resource.</p>/pFailure 1:
Failure 1:
<a href="https://www.facebook.com/zaporizhzhiacitycouncil" target="_blank">...</a>/aFailure 2:
<a href="https://www.instagram.com/zaporizhzhia_city_council/" target="_blank">...</a>/aFailure 3:
<a href="https://t.me/zaporizhzhiacitycouncil" target="_blank">...</a>/aFailure 4:
<a href="/rss.xml" target="_blank">...</a>/aFailure 1:
<a href="/" style="display: inline-block; height: 60%; margin-right: 20px">...</a>/aFailure 2:
<a style="text-decoration: underline;" href="https://toolkit.in.ua">Хочете такий сайт з чат-ботом для громади?</a>/aFailure 1:
<h4>Такої сторінки не існує</h4>/h4Failure 1:
<p class="header">Громада</p>/p[@class="header"]Failure 2:
<p class="header">Документи та дані</p>/p[@class="header"]Failure 3:
<p class="header">Громадянам</p>/p[@class="header"]Failure 4:
<p class="header">Громадська участь</p>/p[@class="header"]Failure 1:
<p class="tiny">Створено в межах швейцарсько-української Програми ...</p>/p[@class="tiny"]Failure 2:
<p class="tiny">...</p>/p[@class="tiny"]Failure 3:
<p class="tiny">...</p>/p[@class="tiny"]Failure 1:
<p>Запорізька область, Запорізький район</p>/pFailure 2:
<p>Схоже, це неправильна адреса, або сторінка переїха...</p>/pFailure 3:
<p class="header">Громада</p>/p[@class="header"]Failure 4:
<p>Контакти та звернення</p>/pFailure 5:
<p>Секретар Запорізької міської ради</p>/p… and 34 more failures for this rule
Failure 1:
<p>Запорізька область, Запорізький район</p>/pFailure 2:
<p>Схоже, це неправильна адреса, або сторінка переїха...</p>/pFailure 3:
<p class="header">Громада</p>/p[@class="header"]Failure 4:
<p>Контакти та звернення</p>/pFailure 5:
<p>Секретар Запорізької міської ради</p>/p… and 34 more failures for this rule
Failure 1:
<meta http-equiv="refresh" content="360" />/metaFailure 1:
<meta http-equiv="refresh" content="360" />/metaFailure 1:
<button type="button" aria-expanded="false" aria-controls="menu--level-1-898360234" aria-labelledby="aria-id-295759540" class="menu__toggle-button js-show-menu__toggle-button">...</button>/button[@class="menu__toggle-button js-show-menu__toggle-button"]Failure 2:
<button type="button" aria-expanded="false" aria-controls="menu--level-1-1204029609" aria-labelledby="aria-id-739054089" class="menu__toggle-button js-show-menu__toggle-button">...</button>/button[@class="menu__toggle-button js-show-menu__toggle-button"]Failure 3:
<button type="button" aria-expanded="false" aria-controls="menu--level-1-1355022080" aria-labelledby="aria-id-487841810" class="menu__toggle-button js-show-menu__toggle-button">...</button>/button[@class="menu__toggle-button js-show-menu__toggle-button"]Failure 4:
<button type="button" aria-expanded="false" aria-controls="menu--level-1-967549540" aria-labelledby="aria-id-503209492" class="menu__toggle-button js-show-menu__toggle-button">...</button>/button[@class="menu__toggle-button js-show-menu__toggle-button"]Failure 5:
<button type="button" aria-expanded="false" aria-controls="menu--level-1-2061903380" aria-labelledby="aria-id-1137812314" class="menu__toggle-button js-show-menu__toggle-button">...</button>/button[@class="menu__toggle-button js-show-menu__toggle-button"]… and 18 more failures for this rule
Failure 1:
<a href="https://www.helsinkikanava.fi/fi/" class="menu__link" data-is-external="true">...</a>/a[@class="menu__link"]Failure 2:
<a href="https://palautteet.hel.fi/" class="menu__link" data-is-external="true">...</a>/a[@class="menu__link"]Failure 1:
Failure 1:
Failure 1:
Failure 2:
Failure 3:
Failure 4:
Failure 1:
Impact: serious
Failure 1:
<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="simple-icons-icon simple-icons-icon__linkedin" focusable="false">.simple-icons-icon__linkedinImpact: moderate
Failure 1:
<html lang="de"><head> <meta charset="UTF-8"> <title>Gone</title> <script defer="" src="/__varnish/pub/i.js"></script> <meta name="xid" content="185930087"> </head> <body> <h1>Gone</h1> <div>Die angeforderte Ressource ist nicht mehr verfügbar.</div> </body></html>htmlImpact: moderate
Failure 1:
<h1>Gone</h1>h1Failure 2:
<div>Die angeforderte Ressource ist nicht mehr verfügbar.</div>divImpact: critical
Failure 1:
<div class="navItem1" role="ElementosCarrousel0" tabindex="0" aria-label="Ver la primera diapo..." aria-controls="slide_1" aria-selected="true" onclick="paginacion1(this)" onkeyup="paginacion1Event(eve..." style="cursor: pointer; wid...">.navItem1Failure 2:
<div class="navItem2" role="ElementosCarrousel1" tabindex="0" aria-label="Ver la segunda diapo..." aria-controls="slide_2" aria-selected="false" onclick="paginacion2(this)" onkeyup="paginacion2Event(eve..." style="cursor: pointer; wid...">.navItem2Impact: serious
Failure 1:
<div class="navItem1" role="ElementosCarrousel0" tabindex="0" aria-label="Ver la primera diapo..." aria-controls="slide_1" aria-selected="true" onclick="paginacion1(this)" onkeyup="paginacion1Event(eve..." style="cursor: pointer; wid...">.navItem1Failure 2:
<div class="navItem2" role="ElementosCarrousel1" tabindex="0" aria-label="Ver la segunda diapo..." aria-controls="slide_2" aria-selected="false" onclick="paginacion2(this)" onkeyup="paginacion2Event(eve..." style="cursor: pointer; wid...">.navItem2Impact: critical
Failure 1:
<ul class="nav nav-tabs nav-tabs-type2" role="tablist">.nav-tabs-type2Impact: critical
Failure 1:
<a href="#tab-para_ti" aria-controls="tab-para_ti" role="tab" data-toggle="tab">Para ti</a>a[href$="#tab-para_ti"]Failure 2:
<a href="#tab-en_tu_distrito" aria-controls="tab-en_tu_distrito" role="tab" data-toggle="tab">En tu distrito</a>a[href$="#tab-en_tu_distrito"]Impact: critical
Failure 1:
<div class="navItem1" role="ElementosCarrousel0" tabindex="0" aria-label="Ver la primera diapo..." aria-controls="slide_1" aria-selected="true" onclick="paginacion1(this)" onkeyup="paginacion1Event(eve..." style="cursor: pointer; wid...">.navItem1Failure 2:
<div class="navItem2" role="ElementosCarrousel1" tabindex="0" aria-label="Ver la segunda diapo..." aria-controls="slide_2" aria-selected="false" onclick="paginacion2(this)" onkeyup="paginacion2Event(eve..." style="cursor: pointer; wid...">.navItem2Impact: critical
Failure 1:
<div class="navItem1" role="ElementosCarrousel0" tabindex="0" aria-label="Ver la primera diapo..." aria-controls="slide_1" aria-selected="true" onclick="paginacion1(this)" onkeyup="paginacion1Event(eve..." style="cursor: pointer; wid...">.navItem1Impact: minor
Failure 1:
<img src="/UnidadesDescentralizadas/UDCMedios/noticias/2026/02Febrero/23Lunes/NotasdePrensa/AlmeidaSandboxMadrid/destacada2.jpeg" alt="Almeida asegura que “Madrid es el ecosistema adecuado para innovar, aprender y experimentar” durante la presentación de Sandbox Madrid" class="info_relevant">.hightlight > .info_relevant_img > .info_relevantImpact: serious
Failure 1:
<li class="bg-tab_arrow first active col-md-3 col-sm-4 col-xs-6"><a href="#tab-para_ti" aria-controls="tab-para_ti" role="tab" data-toggle="tab">Para ti</a></li>.bg-tab_arrowFailure 2:
<li class="col-md-3 col-sm-4 col-xs-6"><a href="#tab-en_tu_distrito" aria-controls="tab-en_tu_distrito" role="tab" data-toggle="tab">En tu distrito</a></li>.col-xs-6.col-md-3.col-sm-4:nth-child(2)Impact: moderate
Failure 1:
<div class="iam-cookie-control-modal-content" style="padding: ">.iam-cookie-control-modal-contentFailure 2:
<div class="bg-fluid1 fluid1--main navigation-bar--desktop">.fluid1--mainFailure 3:
<div class="bg-fluid1">.content > .bg-fluid1Failure 4:
<h2 class="title4">A UN CLIC</h2>.ampliado.container > .title4Failure 5:
<div class="col-md-3 col-sm-4">.row > .col-md-3.col-sm-4… and 30 more failures for this rule
Impact: moderate
Failure 1:
<td class="old disabled day" headers="dow-l" scope="row">26</td>.old.disabled[headers="dow-l"]Failure 2:
<td class="old disabled day" headers="dow-m" scope="row">27</td>.old.disabled[headers="dow-m"]Failure 3:
<td class="old disabled day" headers="dow-x" scope="row">28</td>.old.disabled[headers="dow-x"]Failure 4:
<td class="old disabled day" headers="dow-j" scope="row">29</td>.old.disabled[headers="dow-j"]Failure 5:
<td class="old disabled day" headers="dow-v" scope="row">30</td>.old.disabled[headers="dow-v"]… and 37 more failures for this rule
Impact: critical
Failure 1:
<button type="submit" class="header__search-btn"> <i class="fa fa-search" aria-hidden="true"></i> </button>.hidden-xs > .notfound__search-form > form > .input-group > buttonImpact: moderate
Failure 1:
<html lang="ru">htmlImpact: moderate
Failure 1:
<html lang="ru">htmlImpact: moderate
Failure 1:
<div class="row">.row:nth-child(1)Failure 2:
<div class="row">.row:nth-child(2)Failure 3:
<div class="col-md-4"> <div class="notfound__search-img"> <img src="/site/img/plane.png" alt="plane"> </div> </div>.col-md-4:nth-child(3)Failure 4:
<input name="q" type="search" class="form-control header__search-input" placeholder="Що ви шукаете?">.hidden-xs > .notfound__search-form > form > .input-group > inputImpact: serious
Failure 1:
<a href="https://www.almaty.kz/elementor-6652/">Транспортный каркас Алматы</a>#menu-menu-1 > .menu-item-6761.menu-item-type-post_type.menu-item-object-page > aFailure 2:
<a href="https://www.almaty.kz/?page_id=2668">Новости</a>#menu-menu-1 > .menu-item-type-custom.menu-item-object-custom.menu-item-2254 > aFailure 3:
<a href="https://www.almaty.kz/photoreportage/">Фоторепортаж</a>#menu-menu-1 > .menu-item-2646.menu-item-type-post_type.menu-item-object-page > aFailure 4:
<a href="https://www.almaty.kz/%d1%8d%d0%ba%d1%81%d0%bf%d0%b5%d1%80%d1%82%d1%8b-2/">Эксперты</a>#menu-menu-1 > .menu-item-2655.menu-item-type-post_type.menu-item-object-page > aFailure 5:
<a href="https://www.almaty.kz/%d0%b8%d0%bd%d1%84%d0%be%d0%b3%d1%80%d0%b0%d1%84%d0%b8%d0%ba%d0%b0-2/">Инфографика</a>#menu-menu-1 > .menu-item-2250.menu-item-type-post_type.menu-item-object-page > a… and 22 more failures for this rule
Impact: serious
Failure 1:
<html lang="ru-RU" style="transform: none;">htmlImpact: moderate
Failure 1:
<h3 class="inner-arrow"> <span> <span>Полезные контакты: </span> </span></h3>.elementor-element-f1a8d61 > .elementor-widget-container > .penci-text-editor.penci-block-vc > .style-6.penci-border-arrow.penci-homepage-title > .inner-arrowImpact: moderate
Failure 1:
<html lang="ru-RU" style="transform: none;">htmlImpact: moderate
Failure 1:
<nav class="navigation menu-style-2 no-class menu-item-normal " role="navigation" itemscope="" itemtype="https://schema.org/SiteNavigationElement">.penci_nav_aligncenter.penci_nav_center.penci_nav_col > .pc-main-menu.pc-builder-menu.pc-builder-element > .menu-style-2.menu-item-normal.navigationImpact: serious
Failure 1:
<a href="https://www.almaty.kz/"> <img class="penci-mainlogo penci-limg pclogo-cls" src="https://www.almaty.kz/wp-content/uploads/2023/11/logo3-2.png" alt="" width="336" height="112"> </a>.pc-logo-desktop > a[href$="almaty.kz/"]Failure 2:
<a href="https://www.almaty.kz/"> <img class="penci-mainlogo penci-limg pclogo-cls" src="https://www.almaty.kz/wp-content/uploads/2023/11/logo3-2.png" alt="" width="336" height="112"> </a>.pb-logo-sidebar-mobile > a[href$="almaty.kz/"]Impact: moderate
Failure 1:
<a href="#" aria-label="Search" class="search-click pc-button-define-customize"> <i class="penciicon-magnifiying-glass"></i> </a>.penci_midbar > .container-1400.container > .penci_nav_row > .penci_nav_right.penci_nav_alignright.penci_nav_col > .penci-top-search.pcheader-icon.top-search-classes > .pc-button-define-customize.search-click[aria-label="Search"]Failure 2:
<div class="penci_nav_col penci_nav_left penci_nav_alignleft"> <div class="penci-builder-element penci-data-time-format "> <span>22/02/2026 16:23</span> </div> </div>.penci_bottombar > .container-1400.container > .penci_nav_row > .penci_nav_left.penci_nav_alignleft.penci_nav_colFailure 3:
<span class="headline-title nticker-style-1 penci-enable-uppercase">Top Posts</span>.headline-titleFailure 4:
<span class="penci-trending-nav"> <a class="penci-slider-prev" aria-label="Previous" href="#"><i class="penci-faicon fa fa-angle-left"></i></a> <a class="penci-slider-next" aria-label="Next" href="#"><i class="penci-faicon fa fa-angle-right"></i></a> </span>.penci-trending-navFailure 5:
<div class="owl-stage-outer owl-height" style="height: 32px;">.owl-stage-outer… and 12 more failures for this rule
Impact: minor
Failure 1:
<h3 class="paris-card-title"></h3>.paris-card-titleImpact: serious
Failure 1:
<select class="paris-footer-select-object" data-action="footer#onChange" data-target="footer.mairies" title="Retrouvez les actualités de votre arrondissement">selectImpact: moderate
Failure 1:
<nav class="shortcuts" role="navigation">.shortcuts[role="navigation"]:nth-child(2)Impact: serious
Failure 1:
<a id="home_banner_link" target="_blank" href="https://www.paris.fr/dossiers/elections-mode-d-emploi-pour-s-inscrire-et-voter-261"> <img loading="lazy" alt="" src="https://cdn.paris.fr/paris/2026/01/09/desktop-107e1afba7e68fd68556324150d187f4.png"> </a>#home_banner_linkFailure 2:
<a class="paris-footer-newsletter-link" href="/newsletter"> </a>.paris-footer-newsletter-linkImpact: serious
Failure 1:
<small> 181612$4pxet@8010p72<br> <span id="errdate">Mon Feb 23 2026 17:16:12 GMT+0000 (Coordinated Universal Time)</span><br> <span id="errurl">https://www.wien.gv.at/%20%20%ef%bf%bc/</span><br> </small>smallFailure 2:
<span id="errdate">Mon Feb 23 2026 17:16:12 GMT+0000 (Coordinated Universal Time)</span>#errdateFailure 3:
<span id="errurl">https://www.wien.gv.at/%20%20%ef%bf%bc/</span>#errurlImpact: serious
Failure 1:
<html>htmlImpact: moderate
Failure 1:
<html>htmlImpact: moderate
Failure 1:
<div id="errorpage">#errorpageImpact: moderate
Failure 1:
<html lang="en">htmlImpact: moderate
Failure 1:
<h1>HTTP Status 400 – Bad Request</h1>h1Impact: serious
Failure 1:
<div id="progressbar-carousel-capcalera" class="progress" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="25" style="background-size: 25% 100%;"> <span class="slider__label sr-only">25% completed</span> </div>#progressbar-carousel-capcaleraImpact: serious
Failure 1:
<span tabindex="0" class="qualitat-aire-anterior bcn-disabled" aria-label="Anterior"> <i aria-hidden="true" title="Anterior" class="bcn-disabled"></i> </span>#qualitat-aire-iFailure 2:
<span tabindex="0" class="qualitat-aire-seguent" aria-label="Següent"> <i aria-hidden="true" title="Següent" class=""></i> </span>#qualitat-aire-iImpact: critical
Failure 1:
<button class="geoLocation"></button>#iframe-planolImpact: serious
Failure 1:
<a href="https://www.barcelonactiva.cat/lidera" target="_blank" title="Obre en una finestra nova">Suport a dones professionals<span class="sr-only"> Obre en una finestra nova</span></a>.treball-i-empresa.item-destacat[data-cat="treball-i-empresa"]:nth-child(3) > .box-destacat > .content-box > .box-info > h2 > a[target="_blank"][title="Obre en una finestra nova"]Failure 2:
<span>Descobreix Lidera, l’espai de suport i treball en xarxa per a dones professionals, directives i emprenedores.</span>.MsoNormal > spanFailure 3:
<a href="/ca/treball-i-empresa">Treball i empresa</a>.treball-i-empresa.item-destacat[data-cat="treball-i-empresa"]:nth-child(3) > .box-destacat > .cat > a[href$="treball-i-empresa"]Failure 4:
<a href="https://www.habitatge.barcelona/ca/preguntes-frequents-sobre-limitacio-del-preu-de-lloguer" target="_blank" title="Obre en una finestra nova">Consells per llogar un pis <span class="sr-only"> Obre en una finestra nova</span></a>.viure-bcn.item-destacat[data-cat="viure-bcn"]:nth-child(4) > .box-destacat > .content-box > .box-info > h2 > a[target="_blank"][title="Obre en una finestra nova"]Failure 5:
<p>Informa’t de tot el que cal saber per llogar un pis: contracte, serveis bàsics, drets i deures, assegurances, despeses, fiances i molt més.</p>.viure-bcn.item-destacat[data-cat="viure-bcn"]:nth-child(4) > .box-destacat > .content-box > .box-info > p… and 2 more failures for this rule
Impact: serious
Failure 1:
<iframe id="i-temps" src="https://ajuntament.barcelona.cat/widgets/temps/v3/?lang=ca" width="142px" height="88px" allowtransparency="true" frameborder="0" scrolling="no"></iframe>#i-tempsFailure 2:
<iframe frameborder="0" height="88px" src="https://ajuntament.barcelona.cat/widgets/qualitat-aire/v2/?lang=ca&config=lameva&20240110" width="336px" id="qualitat-aire-i"></iframe>#qualitat-aire-iFailure 3:
<iframe frameborder="0" height="410px" src="https://com-shi-va.barcelona.cat/ca/api/widget/route" width="100%"></iframe>iframe[height="410px"]Failure 4:
<iframe src="https://geoportal.barcelona.cat/PlanolBCN/widget/Widget.aspx?lang=CA" id="iframe-planol"></iframe>#iframe-planolImpact: serious
Failure 1:
<html lang="cat" class=" js no-touch geolocation borderimage borderradius textshadow opacity cssgradients svg svgclippaths">#iframe-planolImpact: critical
Failure 1:
<img src="/images/icons/marker.svg" class="img-marker">iframe[height="410px"]Failure 2:
<img src="/images/icons/marker.svg" class="img-marker">iframe[height="410px"]Impact: moderate
Failure 1:
<header id="brand" alias="barcelonacat" brand="barcelonacat_2025-12..." class="v2025 bcnbrand-legac..." data-lwid="19e3126d-e1c9-4f40-9..." data-plausible="bcn0657" data-matomo="beOBY9ep" data-avisos="auto" data-web-cerca="https%3A%2F%2Fwww.ba..." data-web-nom="Barcelona" data-cercador="false">#brandImpact: moderate
Failure 1:
<div class="llistat-bg-promos slick-initialized slick-slider slick-dotted" role="region" aria-label="carousel">.llistat-bg-promosFailure 2:
<main id="main-content" role="main">#main-contentFailure 3:
<nav class="js-main-search">#iframe-planolImpact: serious
Failure 1:
<a id="lupaCerca" href="javascript:void(0);" class="js_search_icon"></a>#iframe-planolImpact: moderate
Failure 1:
<a href="#carousel-capcalera" class="visually-hidden focusable to-main-content" tabindex="1"> Vés al contingut </a>.focusableFailure 2:
<li>#ajuntament--prefooter > .container > ul > li:nth-child(1)Failure 3:
<h2>Adreces</h2>li:nth-child(2) > h2Failure 4:
<p>li:nth-child(2) > .llistat > li > pFailure 5:
<h2>Contacte</h2>li:nth-child(3) > h2… and 16 more failures for this rule
Impact: serious
Failure 1:
<a href="#carousel-capcalera" class="visually-hidden focusable to-main-content" tabindex="1"> Vés al contingut </a>.focusableImpact: moderate
Failure 1:
<html lang="hu">htmlImpact: moderate
Failure 1:
<h1>404</h1>h1Failure 2:
<p>A keresett oldal nem található!</p>.error_four_oh_four_content__CIQpz > pImpact: serious
Failure 1:
<html>htmlImpact: serious
Failure 1:
<html>htmlImpact: moderate
Failure 1:
<html>htmlImpact: moderate
Failure 1:
<h1 class="b-page-title js-flexible-title"> Ошибка 404 </h1>h1Failure 2:
<div class="b-content">.b-contentImpact: serious
Failure 1:
<span class="m-intro-carousel-element__date-range__item__month">Feb</span>#splide01-slide02 > .m-intro-carousel-element > .m-intro-carousel-element__inner > .m-intro-carousel-element__date-range > .m-intro-carousel-element__date-range__item[datetime="19.02.2026"] > .m-intro-carousel-element__date-range__item__monthFailure 2:
<a href="https://veranstaltungen.muenchen.de/plan/veranstaltungen/ontour-stadtlebenswert/" tabindex="-1">Stadtentwicklung ON TOUR: Stadt lebenswert</a>#splide02-slide04 > .m-teaser-vertical.m-teaser-vertical-event > .m-teaser-vertical__body > .m-teaser-vertical__headline > aFailure 3:
<p class="m-teaser-vertical__detail"> <svg aria-hidden="true" class="icon icon--before"> <use xlink:href="#icon-calendar"></use> </svg> Mi., 25.02.26, 18:00 Uhr </p>#splide02-slide04 > .m-teaser-vertical.m-teaser-vertical-event > .m-teaser-vertical__body > .m-teaser-vertical__details > .m-teaser-vertical__detail:nth-child(1)Failure 4:
<p class="m-teaser-vertical__detail">#splide02-slide04 > .m-teaser-vertical.m-teaser-vertical-event > .m-teaser-vertical__body > .m-teaser-vertical__details > .m-teaser-vertical__detail:nth-child(2)Impact: moderate
Failure 1:
<div class="splide splide--loop splide--ltr splide--draggable is-active is-overflow is-initialized" id="splide01" role="region" aria-roledescription="carousel">#splide01Impact: moderate
Failure 1:
<div class="m-breadcrumb-image"> <img width="132" height="24" src="/.resources/lhmTemplates/themes/lhm/assets/svg/logo/logo-lhm-muenchen.svg" alt="Logo Landeshauptstadt München"> </div>.m-breadcrumb-imageImpact: serious
Failure 1:
<input type="text" class="tx-solr-q js-solr-q form-control search" name="tx_solr[q]" value="" placeholder="Rechercher" title="Rechercher" aria-describedby="btn-searchsubmit761739" maxlength="64">input[placeholder="Rechercher"]Impact: moderate
Failure 1:
<nav class="d-none d-lg-block">.top-header__container > .d-lg-blockImpact: serious
Failure 1:
<svg class="icon" alt="Facebook" role="img"> <use href="/_assets/a181c6b9e3ca3150a672e87580994929/Images/sprites/sprites.svg#facebook"></use> </svg>svg[alt="Facebook"]Failure 2:
<svg alt="Linkedin" role="img" class="icon"> <use href="/_assets/a181c6b9e3ca3150a672e87580994929/Images/sprites/sprites.svg#linkedin"></use> </svg>svg[alt="Linkedin"]Failure 3:
<svg alt="Bluesky" role="img" class="icon"> <use href="/_assets/a181c6b9e3ca3150a672e87580994929/Images/sprites/sprites.svg#bluesky"></use> </svg>svg[alt="Bluesky"]Failure 4:
<svg alt="Thread" role="img" class="icon"> <use href="/_assets/a181c6b9e3ca3150a672e87580994929/Images/sprites/sprites.svg#thread"></use> </svg>svg[alt="Thread"]Failure 5:
<svg alt="Instagram" role="img" class="icon"> <use href="/_assets/a181c6b9e3ca3150a672e87580994929/Images/sprites/sprites.svg#instagram"></use> </svg>svg[alt="Instagram"]Impact: moderate
Failure 1:
<div class="layout-content portlet-layout" id="main-content" role="main">#main-contentImpact: moderate
Failure 1:
<main class="main-wrapper">mainImpact: moderate
Failure 1:
<main class="main-wrapper">mainImpact: moderate
Failure 1:
<html class="ltr yui3-js-enabled" dir="ltr" lang="cs-CZ">htmlImpact: serious
Failure 1:
<li style="float: left; list-style: none; position: relative; width: 270px; margin-right: 30px;" aria-hidden="true">.bxslider_serv_peop > li[aria-hidden="true"]:nth-child(5)Failure 2:
<li style="float: left; list-style: none; position: relative; width: 270px; margin-right: 30px;" aria-hidden="true">.bxslider_serv_peop > li[aria-hidden="true"]:nth-child(6)Failure 3:
<li style="float: left; list-style: none; position: relative; width: 270px; margin-right: 30px;" aria-hidden="true">.bxslider_serv_peop > li[aria-hidden="true"]:nth-child(7)Failure 4:
<li style="float: left; list-style: none; position: relative; width: 270px; margin-right: 30px;" aria-hidden="true">.bxslider_serv_peop > li[aria-hidden="true"]:nth-child(8)Failure 5:
<li style="float: left; list-style: none; position: relative; width: 270px; margin-right: 30px;" aria-hidden="true">.bxslider_serv_peop > li[aria-hidden="true"]:nth-child(9)… and 21 more failures for this rule
Impact: serious
Failure 1:
<a rel="nofollow" href="/meriya/press-tsentr/novosti/">.main-info__more > a[href$="novosti/"][rel="nofollow"]Failure 2:
<div class="news-main__date">22.02.2026, 11:17</div>.news-main__item_slide > .news-main__descr > .news-main__dateFailure 3:
<div class="news-main__date">23.02.2026, 09:02</div>.news-main__item:nth-child(1) > .news-main__descr > .news-main__dateFailure 4:
<div class="news-main__date">22.02.2026, 09:29</div>.news-main__item:nth-child(2) > .news-main__descr > .news-main__dateFailure 5:
<div class="news-main__date">21.02.2026, 09:37</div>.news-main__item:nth-child(3) > .news-main__descr > .news-main__date… and 15 more failures for this rule
Impact: moderate
Failure 1:
<h4><a href="/meriya/press-tsentr/grafiki-i-plany/" target="_blank">Графики и планы</a></h4>h4Impact: critical
Failure 1:
<img src="/upload/iblock/273/2730122bf60c9a7d8f9cef93ac6f0f66.jpg">li:nth-child(1) > a[target="_blank"][rel="nofollow"] > imgFailure 2:
<img src="/upload/iblock/46e/46e2d0714348226e66babe573f6d0f87.gif">li:nth-child(2) > a[target="_blank"][rel="nofollow"] > imgFailure 3:
<img src="/upload/iblock/b0f/07_Internet_priemnaya.jpg">li[aria-hidden="false"]:nth-child(1) > .serv-peop-list__link[target="_blank"][rel="nofollow"] > .serv-peop-list__background > imgFailure 4:
<img src="/upload/iblock/36a/01_Narodnyy_kontrol.jpg">li[aria-hidden="false"]:nth-child(2) > .serv-peop-list__link[target="_blank"][rel="nofollow"] > .serv-peop-list__background > imgFailure 5:
<img src="/upload/iblock/5ee/Bez-imeni_1.jpg">li[aria-hidden="false"]:nth-child(3) > .serv-peop-list__link[target="_blank"][rel="nofollow"] > .serv-peop-list__background > img… and 19 more failures for this rule
Impact: minor
Failure 1:
<img itemprop="logo" src="/local/templates/kzn/images/logo.png" alt="Казань">img[itemprop="logo"]Impact: moderate
Failure 1:
<html lang="ru" class="bx-core bx-no-touch bx-no-retina bx-chrome js no-touch cssanimations csstransitions">htmlImpact: serious
Failure 1:
<a rel="nofollow" href="http://vk.com/kzn" target="_blank" class="socials-block__link socials-block__link-vk"></a>.header-contacts__socials > .socials-block > .socials-block__list > .socials-block__item:nth-child(1) > .socials-block__link-vk.socials-block__link[href$="kzn"]Failure 2:
<a rel="nofollow" href="https://ok.ru/kzn" target="_blank" class="socials-block__link socials-block__link-ok"></a>.header-contacts__socials > .socials-block > .socials-block__list > .socials-block__item:nth-child(2) > .socials-block__link-ok.socials-block__link[href$="kzn"]Failure 3:
<a rel="nofollow" href="https://zen.yandex.ru/id/5d0887379b4ece00afe4664d" target="_blank" class="socials-block__link socials-block__link-zen"></a>.header-contacts__socials > .socials-block > .socials-block__list > .socials-block__item:nth-child(3) > .socials-block__link-zen.socials-block__link[target="_blank"]Failure 4:
<a rel="nofollow" href="https://www.youtube.com/channel/UC_nhCN0yJtq2DMdKhvNtxIQ" target="_blank" class="socials-block__link socials-block__link-youtube"></a>.header-contacts__socials > .socials-block > .socials-block__list > .socials-block__item:nth-child(4) > .socials-block__link-youtube.socials-block__link[target="_blank"]Failure 5:
<a rel="nofollow" href="https://t.me/kzn_official" target="_blank" class="socials-block__link socials-block__link-telegram"></a>.header-contacts__socials > .socials-block > .socials-block__list > .socials-block__item:nth-child(5) > .socials-block__link-telegram.socials-block__link[href$="kzn_official"]… and 27 more failures for this rule
Impact: moderate
Failure 1:
<html lang="ru" class="bx-core bx-no-touch bx-no-retina bx-chrome js no-touch cssanimations csstransitions">htmlImpact: moderate
Failure 1:
<div class="main-info__title main-block__title">.main-info__titleFailure 2:
<div class="news-main__date">23.02.2026, 09:02</div>.news-main__item:nth-child(1) > .news-main__descr > .news-main__dateFailure 3:
<div class="news-main__caption">.news-main__item:nth-child(1) > .news-main__descr > .news-main__captionFailure 4:
<div class="news-main__date">22.02.2026, 09:29</div>.news-main__item:nth-child(2) > .news-main__descr > .news-main__dateFailure 5:
<div class="news-main__caption"> <a rel="nofollow" href="/meriya/press-tsentr/novosti/za-proshedshie-sutki-v-kazani-ochistili-ot-snega-131-krovlyu-/">За прошедшие сутки в Казани очистили от снега 131 кровлю </a> </div>.news-main__item:nth-child(2) > .news-main__descr > .news-main__caption… and 64 more failures for this rule
Impact: critical
Failure 1:
<meta http-equiv="refresh" content="360">meta[http-equiv="refresh"]Impact: moderate
Failure 1:
<h5> <i class="icon-calendar"></i> 20.11.2025</h5>a[href="https://www.sofia.bg/w/6862277"] > div > h5Failure 2:
<h5> <i class="icon-calendar"></i> 20.02.2026</h5>a[href="https://www.sofia.bg/w/7171021"] > div > h5Failure 3:
<h5> <i class="icon-calendar"></i> 13.02.2026</h5>a[href="https://www.sofia.bg/w/7142960"] > div > h5Failure 4:
<h5> <i class="icon-calendar"></i> 20.02.2026</h5>a[href="https://www.sofia.bg/w/7170045"] > div > h5Impact: critical
Failure 1:
<img src="/image/journal/article?img_id=74807750&t=1769953119014">a[href="https://www.sofia.bg/w/6862277"] > imgFailure 2:
<img src="/image/journal/article?img_id=75202720&t=1771842285380">a[href="https://www.sofia.bg/w/7171021"] > imgFailure 3:
<img src="/image/journal/article?img_id=75202668&t=1771842256672">a[href="https://www.sofia.bg/w/7171707"] > imgFailure 4:
<img src="/image/journal/article?img_id=75202625&t=1771842238456">a[href="https://www.sofia.bg/w/7174051"] > imgFailure 5:
<img src="/image/journal/article?img_id=75202502&t=1771838917023">a[href="https://www.sofia.bg/w/7142960"] > img… and 3 more failures for this rule
Impact: serious
Failure 1:
<a class="nav-link" role="link" aria-haspopup="false" href="/web/search-site/search-in-all-sites">.ml-lg-auto.nav-item > .nav-link[role="link"][aria-haspopup="false"]Failure 2:
<a href="/development-of-regions-2021-2027">#fragment-245d6b42-9dd4-4c71-2ac8-5928484b5848 > .component-image.overflow-hidden > aFailure 3:
<a href="/national-recovery-resilience-plan">#fragment-fe9bd76a-ba86-bdd6-c36d-cf481b110fbe > .component-image.overflow-hidden > aFailure 4:
<a href="/sofia-up">a[href$="sofia-up"]Failure 5:
<a href="https://www.sofia.bg/en/w/7155704">#fragment-16be0234-de3b-2daf-40fe-a4b035fbb526 > .component-image.overflow-hidden > a… and 23 more failures for this rule
Impact: moderate
Failure 1:
<html class="ltr yui3-js-enabled" dir="ltr" lang="bg-BG">htmlImpact: moderate
Failure 1:
<div class="iis-bullet-nav" role="tablist">.iis-bullet-navFailure 2:
<p><a href="/www-sofia-bg-site-map">Карта на сайта</a></p>div[data-analytics-asset-id="66505"] > pFailure 3:
<div class="col-lg-3 col-md-6 pl-5">.pl-5.col-lg-3.col-md-6:nth-child(2)Failure 4:
<div class="col-lg-3 col-md-6 pl-5">.pl-5.col-lg-3.col-md-6:nth-child(3)Failure 5:
<div class="col-lg-3 col-md-6 pl-5">.pl-5.col-lg-3.col-md-6:nth-child(4)… and 1 more failures for this rule
Impact: minor
Failure 1:
<aside class="notification active" id="notifyBlock" role="alert">#notifyBlockImpact: serious
Failure 1:
<span>Главная</span>.home > spanFailure 2:
<button type="submit" class="btn btn-primary btn-lg search-btn">Найти</button>.search-form-top--btn > .form-search-line > .search-btn.btn-primary.btn-lgFailure 3:
<span>/ для граждан</span>a[href="tel:+7 (831) 467-10-01"] > spanFailure 4:
<span>/ для организаций</span>a[href="tel:+7 (831) 467-10-75"] > spanFailure 5:
<a class="footer-menu__link" href="https://admgor.nnov.ru/Gorod/Simvolika-goroda" target="_self">О городе</a>.footer-menu__item:nth-child(1) > .footer-menu__link[target="_self"]… and 14 more failures for this rule
Impact: serious
Failure 1:
<a class="toggle-top-layer link-list-sites" data-href="panelSite" href="#"><i class="icon-menu"></i><span>Каталог сайтов</span></a>.link-list-sitesFailure 2:
<a class="footer-social__link" target="_blank" href="https://vk.com/nn_admgorod">.footer-social__linkImpact: serious
Failure 1:
<ul class="footer-social">.footer-socialImpact: moderate
Failure 1:
<div class="pushy-top bg-gray-color"> <h6 class="title text-white">Навигация по сайту</h6> <span class="close text-white a menu-btn"><i class="icon-close"></i></span> </div>.pushy-topFailure 2:
<div class="item-wrap"> <a class="name link-color" href="/structure">Муниципалитет</a> <span class="a dcjq-parent"><span class="dcjq-icon"></span></span> </div>.dcjq-parent-li:nth-child(1) > .item-wrapFailure 3:
<div class="item-wrap"> <a class="name link-color" href="/Gorod">О городе</a> <span class="a dcjq-parent"><span class="dcjq-icon"></span></span> </div>.dcjq-parent-li:nth-child(2) > .item-wrapFailure 4:
<div class="item-wrap"> <a class="name link-color" href="/rayon">Районы</a> <span class="a dcjq-parent"><span class="dcjq-icon"></span></span> </div>.dcjq-parent-li:nth-child(3) > .item-wrapFailure 5:
<div class="item-wrap"> <a class="name link-color" href="/ZHitelyam">Жителям</a> <span class="a dcjq-parent"><span class="dcjq-icon"></span></span> </div>.dcjq-parent-li:nth-child(4) > .item-wrap… and 5 more failures for this rule
Impact: critical
Failure 1:
<div class="OverlayBase_module_overlayWrapper__42ef25fe " role="alert" aria-modal="false" aria-labelledby="overlay-labelledby" data-content-area-sibling-eligible="true" data-overlay="true" style="opacity: 1; transition: opacity 250ms ease-out;">iframeImpact: minor
Failure 1:
<body role="presentation" class="vp-center">iframeImpact: critical
Failure 1:
<div role="tablist" class="home-main-top">.home-main-topImpact: critical
Failure 1:
<div role="tabbar" class="home-main-top__tabs"><h2 role="tab" ignore-list="" class="ui_title "><span>Информиши се</span></h2><h2 role="tab" ignore-list="" class="ui_title active"><span>Најважније вести</span></h2><h2 role="tab" ignore-list="" class="ui_title "><span>Дешавања</span></h2></div>.home-main-top__tabsImpact: serious
Failure 1:
<div class="breaking-news-mega__subtitle"> ВЕЛИКЕ И ВАЖНЕ СТВАРИ ЗА БЕОГРАД </div>.breaking-news-mega__subtitleFailure 2:
<a to="https://www.beogradsad.rs/" title="БЕОГРАД САД" target="_blank" href="https://www.beogradsad.rs/" rel="noopener" class="breaking-news-mega__cta"> Преглед пројеката </a>.breaking-news-mega__ctaFailure 3:
<p class="city-news__time">19.02.2026.</p>.undefined.city-news__sidebar-list:nth-child(2) > .city-news__container > .city-news__content > .city-news__article[index="0"] > .city-news__timeFailure 4:
<p class="city-news__time">26.01.2026.</p>.undefined.city-news__sidebar-list:nth-child(2) > .city-news__container > .city-news__content > .city-news__article[index="1"] > .city-news__timeFailure 5:
<p class="city-news__time">23.02.2026.</p>.undefined.city-news__sidebar-list:nth-child(3) > .city-news__container > .city-news__content > .city-news__article[index="0"] > .city-news__time… and 43 more failures for this rule
Impact: serious
Failure 1:
<iframe src="https://player.vimeo..." frameborder="0" allow="autoplay; picture-in..." class="breaking-news-mega__...">iframeImpact: minor
Failure 1:
<img src="/img/logo-inverse.svg" alt="Град Београд" class="header__logo">.header__logoImpact: moderate
Failure 1:
<aside ignore-list="" class="sidebar-promo-image sidebar-map">.sidebar-promo-image.sidebar-map:nth-child(1)Impact: serious
Failure 1:
<a href="/cir/usluge" to="/cir/usluge" class="sidebar-map__link"></a>a[to="/cir/usluge"]Failure 2:
<a href="/cir/gradski-oglasi" to="/cir/gradski-oglasi" class="sidebar-map__link"></a>a[to="/cir/gradski-oglasi"]Impact: minor
Failure 1:
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=4">meta[name="viewport"]Impact: moderate
Failure 1:
<div class="breaking-news-mega__content_wrapper">.breaking-news-mega__content_wrapperFailure 2:
<div role="tabbar" class="home-main-top__tabs"><h2 role="tab" ignore-list="" class="ui_title "><span>Информиши се</span></h2><h2 role="tab" ignore-list="" class="ui_title active"><span>Најважније вести</span></h2><h2 role="tab" ignore-list="" class="ui_title "><span>Дешавања</span></h2></div>.home-main-top__tabsFailure 3:
<div class="news-card__image">.news-1-big-2-small__main-container:nth-child(1) > .news-1-big-2-small__main-card > .news-card--large.news-card > .news-card__link > .news-card__imageFailure 4:
<div class="news-card__section news-card__section--service">Беоинфо вести</div>.news-1-big-2-small__main-container:nth-child(1) > .news-1-big-2-small__main-card > .news-card--large.news-card > .news-card__link > .news-card__content > .news-card__section.news-card__section--serviceFailure 5:
<h2 class="news-card__title">Нови симбол града „Београдски сат” на Тргу републике </h2>.news-1-big-2-small__main-container:nth-child(1) > .news-1-big-2-small__main-card > .news-card--large.news-card > .news-card__link > .news-card__content > .news-card__title… and 48 more failures for this rule
Impact: moderate
Failure 1:
<html lang="kk" class="notranslate">htmlImpact: moderate
Failure 1:
<html lang="kk" class="notranslate">htmlImpact: serious
Failure 1:
<a class="smart-menu-tabs_control">Подписка на новости </a>div[data-href$="#subscribe"] > .smart-menu-tabs_controlFailure 2:
<a class="smart-menu-tabs_control">Направления деятельности </a>div[data-href$="#directions"] > .smart-menu-tabs_controlFailure 3:
<a class="smart-menu-tabs_control">Районы города </a>div[data-href$="#areas"] > .smart-menu-tabs_controlFailure 4:
<a class="smart-menu-tabs_control">Важно </a>div[data-href$="#important"] > .smart-menu-tabs_controlFailure 5:
<button class="load-more-block btn btn__primary btn__block show-hidden" data-show-target="#hidden-situations">Показать еще</button>button[data-show-target="#hidden-situations"]… and 2 more failures for this rule
Impact: serious
Failure 1:
<iframe id="widgetPosId" src="https://pos.gosuslug..." width="100%" style="border: 0px none; mi...">#widgetPosIdImpact: moderate
Failure 1:
<html class="js" lang="ru" dir="ltr" style="--pos-banner-fluid-2...">htmlFailure 2:
<html lang="en">#widgetPosIdImpact: moderate
Failure 1:
<html class="js" lang="ru" dir="ltr" style="--pos-banner-fluid-2...">htmlFailure 2:
<html lang="en">#widgetPosIdImpact: moderate
Failure 1:
<a href="/Pages/search.aspx" class="gosbar_btn">.gosbar_btn[href$="search.aspx"]Failure 2:
<a href="/sites/eng" class="gosbar_btn">a[href$="eng"]Failure 3:
<a href="#" class="gosbar_btn link-accessability">.link-accessability.gosbar_btn[href="#"]Failure 4:
<span class="gosbar_btn dropdown-toggle">.dropdown-toggleFailure 5:
<div class="custom-header">.press > .container > .custom-header… and 13 more failures for this rule
Impact: serious
Failure 1:
<html><head> <title>403 Forbidden</title> </head><body> <h1>Forbidden</h1> <p>You don't have permission to access this resource.</p> </body></html>htmlImpact: moderate
Failure 1:
<html><head> <title>403 Forbidden</title> </head><body> <h1>Forbidden</h1> <p>You don't have permission to access this resource.</p> </body></html>htmlImpact: moderate
Failure 1:
<h1>Forbidden</h1>h1Failure 2:
<p>You don't have permission to access this resource.</p>pImpact: moderate
Failure 1:
<html lang="kk" class="notranslate">htmlImpact: moderate
Failure 1:
<html lang="kk" class="notranslate">htmlImpact: serious
Failure 1:
<a rel="nofollow" href="/varianty-glavnyh/title/?filter[246][Category]=39"> Патриотическое воспитание </a>.object-item:nth-child(1) > .item-categories.tpl-text-alt > .item-category > a[rel="nofollow"]Failure 2:
<div class="item-date tpl-text-header6" title="20 февраля 2026 13:29"> 20 февраля 2026, 13:29 </div>div[title="20 февраля 2026 13:29"]Failure 3:
<a rel="nofollow" href="/varianty-glavnyh/title/?filter[246][Category]=14"> Градостроительство </a>.object-item:nth-child(2) > .item-categories.tpl-text-alt > .item-category > a[rel="nofollow"]Failure 4:
<div class="item-date tpl-text-header6" title="20 февраля 2026 10:43"> 20 февраля 2026, 10:43 </div>div[title="20 февраля 2026 10:43"]Failure 5:
<div class="item-date tpl-text-header6" title="19 февраля 2026 18:09"> 19 февраля 2026, 18:09 </div>div[title="19 февраля 2026 18:09"]… and 11 more failures for this rule
Impact: minor
Failure 1:
<h2 class="tpl-text-header2"></h2>#nc-block-b39282e24d9abd32d8de76a72a22e1a2 > h2Impact: serious
Failure 1:
<iframe id="widgetPosId" src="https://pos.gosuslug..." width="100%" height="" style="border:0">.swiper-slide-prev > iframeFailure 2:
<iframe id="widgetPosId" src="https://pos.gosuslug..." width="100%" height="" style="border:0">.swiper-slide-duplicate-prev > iframeImpact: critical
Failure 1:
<img src="/netcat_files/generated/class_settings/img_org/1100x260/2643/bf00ebdf26340f05e2251b2bb7b69425.png?crop=0%3A0%3A0%3A0&hash=00c0969864d1c579d91e83fd9576135e&resize_mode=5&wm_m=0" class="gw-banner-custom__img">.gw-banner-custom > .gw-banner-custom__imgImpact: minor
Failure 1:
<img src="/netcat_files/177/free_icon_building_3846651.png" alt="Новости управ">img[alt="Новости управ"]Failure 2:
<img src="/netcat_files/802/free_icon_event_4307822.png" alt="Афиша">img[alt="Афиша"]Failure 3:
<img src="/netcat_files/734/svo_png.png" alt="Поддержка участников СВО">img[src$="svo_png.png"]Failure 4:
<img src="/netcat_files/731/80_let_pobedy_png.png" alt="80 лет Победы">img[alt="80 лет Победы"]Failure 5:
<img src="/netcat_files/130/free_icon_group_554826.png" alt="Общественные и внешние связи">img[alt="Общественные и внешние связи"]… and 20 more failures for this rule
Impact: serious
Failure 1:
<a class="gw-header-icons__link gw-header__link gw-js-main-search-link gw-js-search-link" href="#">.gw-js-main-search-linkFailure 2:
<a target="_blank" href="https://vk.com/petrin_vrn">.contacts-object-social-item:nth-child(1) > .tpl-text-default > a[href$="petrin_vrn"][target="_blank"]Failure 3:
<a target="_blank" href="https://t.me/petrin_vrn">.contacts-object-social-item:nth-child(2) > .tpl-text-default > a[href$="petrin_vrn"][target="_blank"]Failure 4:
<a class="gw-banner-custom" href="https://www.govvrn.ru/" target="_blank">.gw-banner-customFailure 5:
<a href="https://t.me/petrin_vrn" class="gw-footer-icon__link" target="_blank">.gw-footer-icon__link[href$="petrin_vrn"][target="_blank"]… and 2 more failures for this rule
Impact: moderate
Failure 1:
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">meta[name="viewport"]Impact: moderate
Failure 1:
<html lang="ru" class="gw-blind-support-fon..." style="--pos-banner-fluid-2...">htmlFailure 2:
<html lang="en">.swiper-slide-prev > iframeFailure 3:
<html lang="en">.swiper-slide-duplicate-prev > iframeImpact: moderate
Failure 1:
<p>.gw-analytics-agreement__wrapper > pImpact: serious
Failure 1:
<div class="carousel-inner" role="listbox">#carousel_maps_1 > .carousel-inner[role="listbox"]Failure 2:
<div class="carousel-inner" role="listbox">#carousel-example-generic > .carousel-inner[role="listbox"]Failure 3:
<div class="carousel-inner" role="listbox">#carousel_maps > .carousel-inner[role="listbox"]Impact: critical
Failure 1:
<div class="carousel-inner" role="listbox">#carousel_maps_1 > .carousel-inner[role="listbox"]Failure 2:
<div class="carousel-inner" role="listbox">#carousel-example-generic > .carousel-inner[role="listbox"]Failure 3:
<div class="carousel-inner" role="listbox">#carousel_maps > .carousel-inner[role="listbox"]Impact: critical
Failure 1:
<button id="search_type_ddl" class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">#search_type_ddlImpact: serious
Failure 1:
<input id="searchText" class="form-control " type="text" value="" style="color: silver;">#searchTextFailure 2:
<div id="day_theme"> ТЕМА ДНЯ 23.02.2026 </div>#day_themeFailure 3:
<a class="archive_link" href="/list/news/admvlg">ВСЕ НОВОСТИ</a>#news_wrap > .archive_link[href$="admvlg"]Failure 4:
<a class="archive_link" href="/list/ads/admvlg" style="position:static!important;">ВСЕ ОБЪЯВЛЕНИЯ</a>#claim_wrap > .archive_link[href$="admvlg"]Failure 5:
<div id="info"> © ОФИЦИАЛЬНЫЙ САЙТ АДМИНИСТРАЦИИ ВОЛГОГРАДА<br> Тел. (8442) 30-13-24. Обращения направлять в <a href="http://www.volgadmin.ru/d/Feedback/Agreement/">Интернет-приемную</a>. </div>#info… and 1 more failures for this rule
Impact: critical
Failure 1:
<img src="/Content/Socnet/ok.png">img[src$="ok.png"]Failure 2:
<img src="/Content/Socnet/vk.png">img[src$="vk.png"]Failure 3:
<img src="/Content/Socnet/tel.png">img[src$="tel.png"]Failure 4:
<img id="logo" class="img-responsive" src="/Content/Images/src/123.png">#logoFailure 5:
<img id="homepage_cs_white" src="/Content/Images/src/icons/Homepage64px.png">#homepage_cs_white… and 9 more failures for this rule
Impact: critical
Failure 1:
<input id="searchText" class="form-control " type="text" value="" style="color: silver;">#searchTextImpact: moderate
Failure 1:
<html lang="ru" style="--pos-banner-fluid-2..." class="js flexbox flexboxle...">htmlImpact: serious
Failure 1:
<a href="https://ok.ru/volgadmin" target="_blank"><img src="/Content/Socnet/ok.png"></a>.socone:nth-child(1) > a[href$="volgadmin"][target="_blank"]Failure 2:
<a href="https://vk.com/volgadmin" target="_blank"><img src="/Content/Socnet/vk.png"></a>.socone:nth-child(2) > a[href$="volgadmin"][target="_blank"]Failure 3:
<a href="https://t.me/volgadmin" target="_blank"><img src="/Content/Socnet/tel.png"></a>.socone:nth-child(3) > a[href$="volgadmin"][target="_blank"]Failure 4:
<a href="/"> <img id="logo" class="img-responsive" src="/Content/Images/src/123.png"></a>.col-md-4 > a[href="/"]Failure 5:
<a href="/" class="dropdown-toggle" id="topmenu_homelink">#topmenu_homelink… and 7 more failures for this rule
Impact: moderate
Failure 1:
<html lang="ru" style="--pos-banner-fluid-2..." class="js flexbox flexboxle...">htmlImpact: moderate
Failure 1:
<div class="socnet">.socnetFailure 2:
<div class="col-md-4 hidden-xs"> <a href="/"> <img id="logo" class="img-responsive" src="/Content/Images/src/123.png"></a> </div>.col-md-4Failure 3:
<img id="cs_white" src="/Content/Images/src/pvision_icon.png">#cs_whiteFailure 4:
<div class="child-search"> <input id="searchText" class="form-control " type="text" value="" style="color: silver;"> </div>.child-searchFailure 5:
<div id="day_theme"> ТЕМА ДНЯ 23.02.2026 </div>#day_theme… and 23 more failures for this rule
Impact: moderate
Failure 1:
<html lang="sv">htmlImpact: moderate
Failure 1:
<div class="error-wrapper"> <div class="error"> <h1 class="error__heading">Sidan hittades inte.</h1> <p> <a href="/" class="error__link">Gå till startsidan</a> </p> </div> </div>.error-wrapperImpact: serious
Failure 1:
<p>Adreswijziging in of naar Amsterdam</p>#PagCls_17856179 > .grid-edge > .grid-inside > .holder > .tekst.iprox-rich-content.iprox-content > pFailure 2:
<p>Meld kapotte dingen of overlast</p>#PagCls_17856181 > .grid-edge > .grid-inside > .holder > .tekst.iprox-rich-content.iprox-content > pFailure 3:
<p>Kosten en vergunningen</p>#PagCls_17856177 > .grid-edge > .grid-inside > .holder > .tekst.iprox-rich-content.iprox-content > pFailure 4:
<p>Ophaaldagen, containers en recycling</p>#PagCls_17856183 > .grid-edge > .grid-inside > .holder > .tekst.iprox-rich-content.iprox-content > pFailure 5:
<p>Aanvragen of verlengen</p>#PagCls_17864544 > .grid-edge > .grid-inside > .holder > .tekst.iprox-rich-content.iprox-content > p… and 54 more failures for this rule
Impact: moderate
Failure 1:
<html lang="nl" class=" js svg">htmlImpact: moderate
Failure 1:
<div id="PagCls_17856182" class="grid-zone ams-grid__cell ams-grid__cell--span-12 multizone multizone-first z-featured_2 zone_featured_2 z2 regularrows">#PagCls_17856182Failure 2:
<div id="zone_featured_3" class="grid-zone ams-grid__cell ams-grid__cell--span-12 multizone z-featured_3 zone_featured_3 z3 regularrows">#zone_featured_3Failure 3:
<div id="PagCls_17856176" class="grid-zone ams-grid__cell ams-grid__cell--span-12 multizone z-news_3 zone_news_3 z4 regularrows">#PagCls_17856176Failure 4:
<div id="zone_news_4" class="grid-zone ams-grid__cell ams-grid__cell--span-12 multizone multizone-last z-news_4 zone_news_4 z5 regularrows">#zone_news_4Impact: serious
Failure 1:
<html>htmlImpact: moderate
Failure 1:
<html>htmlImpact: moderate
Failure 1:
<h1>403 ERROR</h1>h1Failure 2:
<h2>The request could not be satisfied.</h2>h2Failure 3:
<pre>Generated by cloudfront (CloudFront) Request ID: ssP_1JLmLhXEzfcYnq4bdSvkZbjIxxvbb6DGrDpx2u16Oh0ws9Qa7g== </pre>preImpact: critical
Failure 1:
<button name="op" value="Rechercher" type="submit"></button>button[name="op"][value="Rechercher"][type="submit"]Impact: serious
Failure 1:
<span class="txt-menu">Menu</span>.txt-menuFailure 2:
<div class="content_title" style="color: #00a0cf !important;"> Education </div>a[href$="situation"] > .actus_content-item.actualites > .content > .content_titleFailure 3:
<div class="content_title" style="color: #0095ff !important;"> Découvrir Marseille </div>.col-sm-6.col-lg-3:nth-child(3) > .img > .actus_content-item.actualites > .content > .content_titleFailure 4:
<div class="content_title" style="color: #0097a7 !important;"> Sports-Loisirs </div>.col-sm-6.col-lg-3:nth-child(4) > .img > .actus_content-item.actualites > .content > .content_titleFailure 5:
<div class="content_title" style="color: #00af5e !important;"> Marseille, ville nature </div>.col-sm-6.col-lg-3:nth-child(5) > .img > .actus_content-item.actualites > .content > .content_title… and 4 more failures for this rule
Impact: moderate
Failure 1:
<h3 class="content_desc"> La situation dans les crèches municipales et les écoles publiques de la ville</h3>a[href$="situation"] > .actus_content-item.actualites > .content > .content_descImpact: critical
Failure 1:
<img src="https://www.marseille.fr/sites/default/files/logo_0.png" width="106" height="69" loading="lazy">img[width="106"]Impact: serious
Failure 1:
<input class="form-text" title="Indiquer les termes à rechercher" autocomplete="off" placeholder="Rechercher" type="text" id="edit-search-block-form--2" name="keys" value="" size="15" maxlength="128">#edit-search-block-form--2Impact: moderate
Failure 1:
<nav class="navbar" id="navbar-top">#navbar-topImpact: serious
Failure 1:
<a class="social-media-link-icon--twitter" href="https://x.com/marseille" target="_blank" rel="noopener noreferrer"> <span class="fab fa-x-twitter fa-lg"></span> </a>.social-media-link-icon--twitterFailure 2:
<a class="social-media-link-icon--facebook" href="https://www.facebook.com/marseilleville/" target="_blank" rel="noopener noreferrer"> <span class="fab fa-facebook fa-lg"></span> </a>.social-media-link-icon--facebookFailure 3:
<a class="social-media-link-icon--instagram" href="https://www.instagram.com/villemarseille/" target="_blank" rel="noopener noreferrer"> <span class="fab fa-instagram fa-lg"></span> </a>.social-media-link-icon--instagramFailure 4:
<a class="social-media-link-icon--youtube" href="https://www.youtube.com/user/VilledeMarseille" target="_blank" rel="noopener noreferrer"> <span class="fab fa-youtube fa-lg"></span> </a>.social-media-link-icon--youtubeFailure 5:
<a class="social-media-link-icon--tiktok" href="https://www.tiktok.com/@villedemarseille" target="_blank" rel="noopener noreferrer"> <span class="fab fa-tiktok fa-lg"></span> </a>.social-media-link-icon--tiktok… and 1 more failures for this rule
Impact: serious
Failure 1:
<ul class="pagination js-pager__items">.paginationImpact: moderate
Failure 1:
<div id="block-vdm-breadcrumbs" class="block block-system block-system-breadcrumb-block">#block-vdm-breadcrumbsImpact: moderate
Failure 1:
<html lang="it" dir="ltr" class=" inputtypes-search i..." data-once="user_button" style="">htmlImpact: moderate
Failure 1:
<h2 id="salta" class="visually-hidden">Salta al contenuto</h2>#saltaImpact: serious
Failure 1:
<button class="btn btn-search btn-block">Поиск</button>.btn-searchFailure 2:
<a href="/">Главная страница</a>p:nth-child(3) > a[href="/"]Failure 3:
<a href="/sitemap/">Карта сайта</a>a[href$="sitemap/"]Failure 4:
<button type="button" id="nca-cookiesaccept-line-accept-btn" class="btn" onclick="ncaCookieAcceptBtn()">Принять</button>#nca-cookiesaccept-line-accept-btnImpact: serious
Failure 1:
<html>htmlImpact: critical
Failure 1:
<img src="/local/templates/saratovmer/images/logo_sm.png">imgImpact: moderate
Failure 1:
<html>htmlImpact: moderate
Failure 1:
<div class="error-page-big-text"> 404 </div>.error-page-big-textFailure 2:
<h1>Страница не найдена </h1>h1Failure 3:
<div class="col col-mb-12 col-7 col-dt-8"> <input class="input input-search input-block mb10" type="text" name="q" placeholder="Поиск по сайту"> </div>.col-7Failure 4:
<p class="col-margin"> <a href="/">Главная страница</a> </p>p:nth-child(3)Failure 5:
<p class="col-margin"> <a href="/sitemap/">Карта сайта</a> </p>p:nth-child(4)… and 1 more failures for this rule
Impact: serious
Failure 1:
<html><head></head><body>Access Denied (Bot detected)</body></html>htmlImpact: serious
Failure 1:
<html><head></head><body>Access Denied (Bot detected)</body></html>htmlImpact: moderate
Failure 1:
<html><head></head><body>Access Denied (Bot detected)</body></html>htmlImpact: moderate
Failure 1:
<html><head></head><body>Access Denied (Bot detected)</body></html>htmlImpact: critical
Failure 1:
<meta http-equiv="refresh" content="360">meta[http-equiv="refresh"]Impact: serious
Failure 1:
<html xmlns="http://www.w3.org/1999/xhtml">htmlImpact: moderate
Failure 1:
<html xmlns="http://www.w3.org/1999/xhtml">htmlImpact: moderate
Failure 1:
<div id="header"><h1>Server Error</h1></div>#headerFailure 2:
<div id="content"> <div class="content-container"><fieldset> <h2>404 - File or directory not found.</h2> <h3>The resource you are looking for might have been removed, had its name changed, or is temporarily unavailable.</h3> </fieldset></div> </div>#contentImpact: serious
Failure 1:
<html><head> <title>403 Forbidden</title> </head><body> <h1>Forbidden</h1> <p>You don't have permission to access this resource.</p> </body></html>htmlImpact: moderate
Failure 1:
<html><head> <title>403 Forbidden</title> </head><body> <h1>Forbidden</h1> <p>You don't have permission to access this resource.</p> </body></html>htmlImpact: moderate
Failure 1:
<h1>Forbidden</h1>h1Failure 2:
<p>You don't have permission to access this resource.</p>pImpact: moderate
Failure 1:
<h4>Такої сторінки не існує</h4>h4Impact: serious
Failure 1:
<a href="https://www.facebook.com/zaporizhzhiacitycouncil" target="_blank">.social-icons > a[target="_blank"]:nth-child(1)Failure 2:
<a href="https://www.instagram.com/zaporizhzhia_city_council/" target="_blank">a[target="_blank"]:nth-child(2)Failure 3:
<a href="https://t.me/zaporizhzhiacitycouncil" target="_blank">a[target="_blank"]:nth-child(3)Failure 4:
<a href="/rss.xml" target="_blank">a[href$="rss.xml"]Impact: critical
Failure 1:
<meta http-equiv="refresh" content="360">meta[http-equiv="refresh"]