Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.DLink & Button QualityAction12 issue(s) across 438 links and 14 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| / | (empty) | empty | Add link text or aria-label |
| https://ixbt.games | Игры | new tab | Add '(opens in new tab)' to text |
| https://ixbt.market | Маркет | new tab | Add '(opens in new tab)' to text |
| https://ixbt.pro | Про бизнес | new tab | Add '(opens in new tab)' to text |
| https://yandex.ru/adfox/263225/clickURL?… | (empty) | empty | Add link text or aria-label |
| https://vk.com/ixbt_official | VK | new tab | Add '(opens in new tab)' to text |
| https://dzen.ru/ixbt.com | Дзен | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/c/IxbtTV | YouTube | new tab | Add '(opens in new tab)' to text |
| https://t.me/ixbt_official | Telegram | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/ixbtcom/ | X (Twitter) | new tab | Add '(opens in new tab)' to text |
| https://rutube.ru/channel/23474179/ | Rutube | new tab | Add '(opens in new tab)' to text |
| / | (empty) | empty | Add link text or aria-label |
| https://yandex.ru/adfox/263225/clickURL?… | (empty) | empty | Add link text or aria-label |
| https://yandex.ru/adfox/263225/goLink?ad… | (empty) | empty | Add link text or aria-label |
| https://yandex.ru/adfox/263225/goLink?ad… | (empty) | empty | Add link text or aria-label |
| https://www.youtube.com/channel/UCQXqZtG… | (empty) | empty | Add link text or aria-label |
| https://vkvideo.ru/@ixbt_official | (empty) | empty | Add link text or aria-label |
| https://rutube.ru/channel/23474179/ | (empty) | empty | Add link text or aria-label |
| (empty) | empty | Add link text or aria-label | |
| (empty) | empty | Add link text or aria-label | |
| https://vk.com/ixbt_official | VK | new tab | Add '(opens in new tab)' to text |
| https://dzen.ru/ixbt.com | Дзен | new tab | Add '(opens in new tab)' to text |
| https://www.youtube.com/c/IxbtTV | YouTube | new tab | Add '(opens in new tab)' to text |
| https://t.me/ixbt_official | Telegram | new tab | Add '(opens in new tab)' to text |
| https://twitter.com/ixbtcom/ | X (Twitter) | new tab | Add '(opens in new tab)' to text |
| https://rutube.ru/channel/23474179/ | Rutube | new tab | Add '(opens in new tab)' to text |
| <button> | (empty) | empty | Add button text or aria-label |
Links without text are announced as raw URLs by screen readers.
/; https://yandex.ru/adfox/263225/clickURL?ad-session-id=432531776897658720&adfo…; /; https://yandex.ru/adfox/263225/clickURL?ad-session-id=432531776897658720&adfo…; https://yandex.ru/adfox/263225/goLink?ad-session-id=432531776897658720&adfox-…; https://yandex.ru/adfox/263225/goLink?ad-session-id=432531776897658720&adfox-…; https://www.youtube.com/channel/UCQXqZtGXzgt1aCATZ2CYCpw; https://vkvideo.ru/@ixbt_official; https://rutube.ru/channel/23474179/; a.flex (#1821 on page) (+1 more)
Links with no accessible text (empty <a></a>, image-only no alt, icon-only no aria-label) are unidentifiable to screen readers.
Source: WCAG 2.1 SC 2.4.4
Add '(opens in new tab)' to link text or aria-label.
https://ixbt.games; https://ixbt.market; https://ixbt.pro; https://vk.com/ixbt_official; https://dzen.ru/ixbt.com; https://www.youtube.com/c/IxbtTV; https://t.me/ixbt_official; https://twitter.com/ixbtcom/; https://rutube.ru/channel/23474179/; https://vk.com/ixbt_official (+5 more)
Links with target="_blank" without rel="noopener" leak the originating page's window context — security and UX issue.
Learn more ▾ ▴
Without rel="noopener", the new tab can navigate the original tab via window.opener (tab-nabbing attack). Modern browsers default to noopener for target=_blank but only since recent versions. Always set rel="noopener noreferrer" explicitly.
Source: MDN target / OWASP
Icon-only buttons need an aria-label so screen readers can announce them.
button.inline-flex (#91 on page)
Buttons with no accessible text (icon-only, no aria-label) can't be activated by voice control or understood by screen readers.
Source: WCAG 2.1 SC 4.1.2
DWeb ManifestActionNot foundFIX
No web manifest found.
DPrint StylesheetActionNo print stylesFIX
BLandmark Structure15 landmarksREVIEW
Multiple navigations need aria-label to distinguish them for screen readers.
Some <nav> elements lack aria-label — screen-reader users hear 'navigation' multiple times with no way to distinguish them.
Learn more ▾ ▴
When a page has multiple <nav> regions (primary, footer, breadcrumb), each needs aria-label or aria-labelledby. AT users navigate by landmark; identical 'navigation' announcements force them to enter each one to discover purpose.
Source: WAI-ARIA Authoring Practices
Add a skip link as the first focusable element so keyboard users can bypass repeated navigation.
Without a skip-nav link, keyboard users tab through every nav item before reaching content — every page, every visit.
Learn more ▾ ▴
WCAG 2.4.1 (Bypass Blocks) requires a mechanism to skip past repeated content. The standard implementation is a 'Skip to main content' link that's the first focusable element, visually hidden until focused. Three lines of HTML + four of CSS.
Source: WCAG 2.1 SC 2.4.1
BForm Accessibility2 of 2 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| input | search | (Поиск тем…) | placeholder only |
| input | search | (Поиск тем…) | placeholder only |
Placeholder text disappears on focus and is not a reliable label.
<input type="search">; <input type="search">
Placeholder-only labels disappear when the user starts typing — they must remember what the field was for.
Learn more ▾ ▴
Placeholders are NOT labels. They vanish on input, fail color contrast checks (most are gray), and don't satisfy WCAG SC 3.3.2. Always use a real <label> alongside (or aria-labelledby).
Source: WCAG 2.1 SC 3.3.2 / Nielsen Norman
BFavicon & Branding5 icon(s) detectedREVIEW
BDark Mode SupportDark mode detectedREVIEW
Detection limited to meta tags and inline styles.
CColor Contrast (Screenshot)Action20 text elements analyzed, 2 fail WCAG AAREVIEW
Analyzes text contrast against the actual rendered page, including background images, gradients, and overlays that CSS-based tools cannot detect.
Show all checked elements (20)
| Element | Ratio | Required | FG | BG | Result |
|---|---|---|---|---|---|
| h1 IXBT.com — нов… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Облако тег… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title Новости те… | 4.29:1 | 4.5:1 | #000000 | #6868BC | Fail |
| a Конференци… | 4.29:1 | 4.5:1 | #000000 | #6868BC | Fail |
| a Блоги | 20.07:1 | 4.5:1 | #000000 | #F8FAFC | Pass |
| a Игры | 19.53:1 | 4.5:1 | #000000 | #F4F7FA | Pass |
| a Маркет | 19.17:1 | 4.5:1 | #000000 | #F1F5F9 | Pass |
| a Про бизнес | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Еще | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Другие про… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Мерч | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span IXBT | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| span Войти | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Новости | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Статьи | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Видеокарты… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Мобильные … | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Ноутбуки и … | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Платформа … | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
| a Комфортный… | 21.00:1 | 4.5:1 | #000000 | #FFFFFF | Pass |
Methodology: The top 20 text elements by font size were checked. Background color was sampled from the desktop screenshot using a 5-point pattern. WCAG 2.1 AA requires 4.5:1 for normal text and 3:1 for large text.
BLighthouse Accessibility AuditsScore 85/100 — 5 failing, 21 passedREVIEW
Accessibility
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Names and labels
When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.flex > div.flex > div.flex > button.inline-flex div.flex > div.flex > div.flex > button.inline-flex |
div.flex > div.flex > div > button.relative div.flex > div.flex > div > button.relative |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.flex > div.flex > div.flex > a.lg:ml-4 div.flex > div.flex > div.flex > a.lg:ml-4 |
div.flex > div.flex > div#ad-menu-10-1 > a div.flex > div.flex > div#ad-menu-10-1 > a |
nav.critical-topmenu-nav > div.flex > div.flex > a.inline-flex nav.critical-topmenu-nav > div.flex > div.flex > a.inline-flex |
header.flex > div.w-[125px]! > div#ad-breadcrumbs-10-1 > a header.flex > div.w-[125px]! > div#ad-breadcrumbs-10-1 > a |
div#ad-tgb-10-1 > div.native-ad > div.native-ad-body > a.native-ad-image div#ad-tgb-10-1 > div.native-ad > div.native-ad-body > a.native-ad-image |
div#ad-tgb-20-1 > div.native-ad > div.native-ad-body > a.native-ad-image div#ad-tgb-20-1 > div.native-ad > div.native-ad-body > a.native-ad-image |
div.flex > div.flex > div.flex > a.block div.flex > div.flex > div.flex > a.block |
div.flex > div.flex > div.flex > a.block div.flex > div.flex > div.flex > a.block |
div.flex > div.flex > div.flex > a.block div.flex > div.flex > div.flex > a.block |
div.mb-4 > header.flex > div.bg-slate-200/80 > a.flex div.mb-4 > header.flex > div.bg-slate-200/80 > a.flex |
div.mb-4 > header.flex > div.bg-slate-200/80 > a.flex div.mb-4 > header.flex > div.bg-slate-200/80 > a.flex |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Contrast
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
РЕКЛАМА div > div#ad-tgb-10-1 > div > span |
РЕКЛАМА div > div#ad-tgb-20-1 > div > span |
Про бизнес div.mb-4 > div.flex > div.critical-ixbt-card > div.absolute |
Блоги div.mb-4 > div.flex > div.critical-ixbt-card > div.absolute |
Блоги div.mb-4 > div.flex > div.critical-ixbt-card > div.absolute |
Блоги div.mb-4 > div.flex > div.critical-ixbt-card > div.absolute |
Блоги div.mb-4 > div.flex > div.critical-ixbt-card > div.absolute |
Блоги div.mb-4 > div.flex > div.critical-ixbt-card > div.absolute |
Блоги div.mb-4 > div.flex > div.critical-ixbt-card > div.absolute |
УАЗ div.rounded-2xl > div.tag-cloud > div.flex > a.tag-cloud-item |
Lenovo div.rounded-2xl > div.tag-cloud > div.flex > a.tag-cloud-item |
Yandex div.rounded-2xl > div.tag-cloud > div.flex > a.tag-cloud-item |
Электротранспорт div.rounded-2xl > div.tag-cloud > div.flex > a.tag-cloud-item |
Hyundai div.rounded-2xl > div.tag-cloud > div.flex > a.tag-cloud-item |
Changan div.rounded-2xl > div.tag-cloud > div.flex > a.tag-cloud-item |
BelGee div.rounded-2xl > div.tag-cloud > div.flex > a.tag-cloud-item |
Oppo div.rounded-2xl > div.tag-cloud > div.flex > a.tag-cloud-item |
Марс div.rounded-2xl > div.tag-cloud > div.flex > a.tag-cloud-item |
Redmi div.rounded-2xl > div.tag-cloud > div.flex > a.tag-cloud-item |
Яндекс div.rounded-2xl > div.tag-cloud > div.flex > a.tag-cloud-item |
Microsoft div.rounded-2xl > div.tag-cloud > div.flex > a.tag-cloud-item |
Астрофизика div.rounded-2xl > div.tag-cloud > div.flex > a.tag-cloud-item |
Конкурсы div.mb-4 > header.flex > a > div.flex |
Copyright © 1997—2026 div.mt-12 > div.flex > div.flex > div.mt-4 |
О сайте div.flex > div.flex > div.mt-6 > a.transition-colors |
О новом дизайне div.flex > div.flex > div.mt-6 > a.transition-colors |
Адрес для связи info@ixbt.com div.mt-12 > div.flex > div.flex > div.mt-6 |
Вернуть старый дизайн div.flex > div.flex > div.mt-6 > a.transition-colors |
Проекты и партнеры div.flex > div.flex > div.flex > div.text-lg |
iXBT.com div.flex > div.flex > div.flex > a.transition-colors |
Конференция div.flex > div.flex > div.flex > a.transition-colors |
Блоги div.flex > div.flex > div.flex > a.transition-colors |
Игры div.flex > div.flex > div.flex > a.transition-colors |
Видео div.flex > div.flex > div.flex > a.transition-colors |
Маркет div.flex > div.flex > div.flex > a.transition-colors |
Полезные ссылки div.mt-12 > div.flex > div.flex > div.text-lg |
Наши авторы div.flex > div.flex > div.flex > a.transition-colors |
Статистика div.flex > div.flex > div.flex > a.transition-colors |
Связь с администрацией div.mt-12 > div.flex > div.flex > div.text-lg |
Реклама и пиар div.flex > div.flex > div.mt-4 > a.transition-colors |
Правила комментирования div.flex > div.flex > div.mt-4 > a.transition-colors |
Политика использования куки div.flex > div.flex > div.mt-4 > a.transition-colors |
Политика защиты и обработки персональных данных div.flex > div.flex > div.mt-4 > a.transition-colors |
These are opportunities to improve the legibility of your content.
Navigation
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Облако тегов div.order-4 > div.rounded-2xl > div.flex > h3.text-base |
These are opportunities to improve keyboard navigation in your application.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
2 div.rounded-2xl > div.flex > div.critical-ixbt-card > span |
4 div.rounded-2xl > div.flex > div.critical-ixbt-card > span |
1 div.rounded-2xl > div.flex > div.critical-ixbt-card > span |
4 div.rounded-2xl > div.flex > div.critical-ixbt-card > span |
3 div.rounded-2xl > div.flex > div.critical-ixbt-card > span |
9 div.rounded-2xl > div.flex > div.critical-ixbt-card > span |
8 div.rounded-2xl > div.flex > div.critical-ixbt-card > span |
1 div.mb-4 > div.flex > div.critical-ixbt-card > span |
2 div.mb-4 > div.flex > div.critical-ixbt-card > span |
2 div.mb-4 > div.flex > div.critical-ixbt-card > span |
2 div.mb-4 > div.flex > div.critical-ixbt-card > span |
2 div.mb-4 > div.flex > div.critical-ixbt-card > span |
2 div.mb-4 > div.flex > div.critical-ixbt-card > span |
1 div.mb-4 > div.flex > div.critical-ixbt-card > span |
2 div.mb-4 > div.flex > div.critical-ixbt-card > span |
2 div.mb-4 > div.flex > div.critical-ixbt-card > span |
1 div.mb-4 > div.flex > div.critical-ixbt-card > span |
1 div.mb-4 > div.flex > div.critical-ixbt-card > span |
4 div.mb-4 > div.flex > div.critical-ixbt-card > span |
21 div.mb-4 > div.flex > div.critical-ixbt-card > span |
AHeading Hierarchy2 headings, 1 skip(s)PASS
- H1 IXBT.com — новости технологий и обзоры гаджетов
- H3 Облако тегов skipped
Skipping heading levels breaks the document outline. Screen readers may interpret missing levels as structural errors.
Skipping heading levels breaks the document outline — screen-reader users lose track of section nesting.
Learn more ▾ ▴
Screen reader users navigate by jumping between headings (H1 → H2 → H3). Skipping (H1 → H3) breaks the sense of hierarchy. Use sequential levels even if you don't like the default styling — restyle with CSS instead. WCAG 1.3.1 (Info and Relationships) treats this as an A failure.
Source: WCAG 2.1 SC 1.3.1 / W3C WAI