Accessibility
· 13 checks — Landmarks, headings, alt text, forms, and link quality rolled into one auditable list.FAlt Text QualityAction13 of 145 images have issuesFIX
| Issue | Count |
|---|---|
| missing | 12 image(s) |
| generic | 1 image(s) |
Images without alt text are invisible to screen readers.
Each image without alt text is a WCAG 1.1.1 failure — invisible to screen-reader users, lost from Google Image Search.
Learn more ▾ ▴
WCAG 2.1 Level A requires text alternatives for non-decorative images. Empty alt='' is fine for decorative; meaningful images need descriptive text. Common fixes: CMS audit + bulk add, build-time linter (alt-text-required ESLint rule), CI gate on Lighthouse a11y score.
Source: WCAG 2.1 SC 1.1.1 / WebAIM Million Report
An image inside a link with no alt creates an empty link.
Image-only links with no alt create empty links — screen-reader users hear 'link' with no destination context.
Learn more ▾ ▴
An <a><img></a> with no img alt is the worst-case for accessibility: AT announces the link but can't describe where it goes. Either add alt to the image OR add aria-label to the link.
Source: WCAG 2.1 SC 2.4.4
FLink & Button QualityAction15 issue(s) across 313 links and 24 buttonsFIX
| Element | Text | Issue | Suggested Fix |
|---|---|---|---|
| https://www.bluestacks.com/pt-br/apps/st… | (empty) | empty | Add link text or aria-label |
| https://x.bluestacks.com?utm_source=www.… | Play instantly on Cloud | new tab | Add '(opens in new tab)' to text |
| https://www.bluestacks.com/pt-br/apps/st… | (empty) | empty | Add link text or aria-label |
| https://x.bluestacks.com?utm_source=www.… | Powered by Play instantly on C… | new tab | Add '(opens in new tab)' to text |
| https://www.bluestacks.com/pt-br/downloa… | BlueStacks 5Baixar | img no alt | Add alt attribute to the image |
| https://www.bluestacks.com/pt-br/blog/bl… | Exclusivos BlueStacks … | img no alt | Add alt attribute to the image |
| https://www.bluestacks.com/pt-br/blog/ga… | Guias de Jogos … | img no alt | Add alt attribute to the image |
| https://www.bluestacks.com/pt-br/blog/ga… | Guias de Jogos … | img no alt | Add alt attribute to the image |
| https://www.youtube.com/channel/UC9eB0Ys… | Inscreva-se no nosso canal | new tab | Add '(opens in new tab)' to text |
| BlueStacks 5Baixar | img no alt | Add alt attribute to the image | |
| https://x.bluestacks.com?utm_source=www.… | Powered by Play instantly on C… | new tab | Add '(opens in new tab)' to text |
| https://discord.gg/bluestacks | (empty) | empty | Add link text or aria-label |
| https://www.reddit.com/r/BlueStacks/ | (empty) | empty | Add link text or aria-label |
| https://www.facebook.com/BlueStacksInc | (empty) | empty | Add link text or aria-label |
| https://twitter.com/bluestacksinc | (empty) | empty | Add link text or aria-label |
| https://www.youtube.com/channel/UC9eB0Ys… | YouTube … | new tab | Add '(opens in new tab)' to text |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
| <button> | (empty) | empty | Add button text or aria-label |
Links without text are announced as raw URLs by screen readers.
https://www.bluestacks.com/pt-br/apps/strategy/lords-mobile-on-pc.html?utm=ho…; https://www.bluestacks.com/pt-br/apps/strategy/lords-mobile-on-pc.html?utm=ho…; https://discord.gg/bluestacks; https://www.reddit.com/r/BlueStacks/; https://www.facebook.com/BlueStacksInc; https://twitter.com/bluestacksinc
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://x.bluestacks.com?utm_source=www.bluestacks.com&utm_campaign=home-page…; https://x.bluestacks.com?utm_source=www.bluestacks.com&utm_campaign=home-page…; https://www.youtube.com/channel/UC9eB0Ysv4UcKgjEy47zcZ5A?sub_confirmation=1; https://x.bluestacks.com?utm_source=www.bluestacks.com&utm_campaign=home-page…; https://www.youtube.com/channel/UC9eB0Ysv4UcKgjEy47zcZ5A?sub_confirmation=1
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#mobile-search-opner; button (#288 on page); button.nav-menu-opner (#356 on page); button.qr-close-modal (#378 on page); button#mobile-search-opner; button (#447 on page); button.close-modal (#2332 on page); button.close-modal (#2339 on page); button.close-modal (#2366 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.
DDark Mode SupportActionNo dark mode signalsFIX
Detection limited to meta tags and inline styles.
DPrint StylesheetActionNo print stylesFIX
CLandmark StructureAction3 landmarksREVIEW
Screen reader users cannot quickly navigate to the primary content. Wrap your main content in <main>.
Without a <main> landmark, screen-reader users can't skip past the navigation to the page content — every page starts with re-reading the menu.
Learn more ▾ ▴
The <main> element marks the page's primary content area. Assistive tech offers a 'jump to main' shortcut — but only if <main> exists. Without it, every page navigation forces re-reading the header. Wrap your primary content in a single <main>.
Source: WAI-ARIA / WCAG 2.4.1
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
CHeading HierarchyAction69 headings, 3 skip(s)REVIEW
- H2 Escolha um método para instalar o aplicativo BlueStacks Mobile no seu celular
- H1 O Emulador Android mais rápido e leve para jogar jogos Android no PC
- H3 BlueStacks Air para Mac skipped
- H3 BlueStacks Store
- H3 Desempenho imbatível
- H3 Mais de 2 milhões de jogos Android
- H3 Apoiado por
- H2 Jogos para todos. Vamos jogar.
- H2 Descubra mais de 2 milhões de jogos
- H2 Jogue jogos no PC, Mac ou na nuvem.
- H2 Nuvem híbrida ou PC local. Jogue como quiser.
- H2 ÚLTIMOS E PRÓXIMOS JOGOS
- H3 MU Immortal
- H3 Slayer: Crimson Legacy
- H3 Renegade Immortal
- H3 Business Dynasty: Zero to Hero
- H3 Magicmon: World
- H3 Spirit Summoners
- H3 Dominion: The Iron Throne
- H3 Ragnarok Monster Kitchen
- H3 Last Fiefdom
- H3 Larva Survival: K-Ani Hunters
- H3 Larva Sky
- H3 Arknights: Endfield
- H3 Dragon Traveler
- H3 MU: Dark Awakening
- H3 Stickman GO
- H3 Eternal Sword Pact
- H3 RAID: Shadow Legends
- H3 Legend of Mushroom
- H3 Azur Lane
- H3 Blood Strike – FPS for all
- H3 Whiteout Survival
- H3 CookieRun: Kingdom
- H3 Blue Archive
- H3 Isekai:Slow Life
- H3 Lords Mobile: Kingdom Wars
- H3 Standoff 2
- H3 Free Fire: Tesouro Perdido
- H3 Call of Duty®: Mobile
- H3 Age of Empires Mobile
- H3 Plants vs Zombies™ 2
- H3 Echocalypse: Scarlet Covenant
- H3 Zombieland: Doomsday Survival
- H3 King of Fighting
- H3 Command & Conquer™: Legions
- H3 MetaCity M
- H3 Azure Tale
- H3 Chess Rumble: PVP Card Battle
- H3 Supremacy: Warhammer 40,000
- H3 Goddess Paradise
- H3 NTE: Neverness to Everness
- H3 Movie Cinema Simulator
- H3 Corrida de quebra de tijolos
- H3 Missão de Ordenar Água
- H3 Dragon Rider Idle
- H3 Jewels Town : Match 3
- H3 Match Puzzle Blast
- H3 Pixel Quest: Rogue Legend
- H3 Skill Blitz
- H2 As Melhores Estratégias de Jogo
- H4 BlueStacks Prime no Mac e no PC: jogabilidade sem anúncios, economia extra em jogos exclusivos e muito mais! skipped
- H4 Standoff 2 – Guia Épico de Casos/Caixas Fable: probabilidades, melhor estratégia e vale a pena?
- H4 Standoff 2 – Itens épicos que você pode criar com fragmentos épicos
- H2 Principais vídeos do nosso canal
- H2 Descubra uma ótima jogabilidade e recompensas exclusivas no PC ou Mac.
- H5 BlueStacks é uma plataforma para PC. skipped
- H5 Desculpe, BlueStacks é apenas para PC ou Mac
- H5 BlueStacks
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
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
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
CForm AccessibilityAction4 of 4 controls have issuesREVIEW
| Control | Type | Label | Method |
|---|---|---|---|
| input | search | (Pesquisar) | placeholder only |
| input | text | (Digite seu endereço de e-mail) | placeholder only |
| input | search | (Pesquisar) | placeholder only |
| terms-and-condition | checkbox | (none) | none |
Form controls need a <label>, aria-label, or aria-labelledby for screen readers.
<input type="checkbox" name="terms-and-condition">
Form controls without labels — assistive tech announces 'edit text' with no context; users can't complete forms.
Source: WCAG 2.1 SC 3.3.2
Placeholder text disappears on focus and is not a reliable label.
<input type="search">; <input type="text">; <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 & Branding4 icon(s) detectedREVIEW
CColor Contrast (Screenshot)Action20 text elements analyzed, 8 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 O Emulador Android m… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Escolha um método p… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Jogos para todos. Va… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Descubra mais de 2 m… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Jogue jogos no PC, M… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Nuvem híbrida ou PC… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Jogue como quiser. | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 ÚLTIMOS E PRÓXIMOS… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 As Melhores Estraté… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Principais vídeos d… | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h2 Descubra uma ótima … | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| h3 Apoiado por | 21.00:1 | 3.0:1 | #000000 | #FFFFFF | Pass |
| title BlueStacks: jogue no… | 1.33:1 | 4.5:1 | #000000 | #1B2331 | Fail |
| span We value your privac… | 1.33:1 | 4.5:1 | #000000 | #1B2330 | Fail |
| div We and our | 1.33:1 | 4.5:1 | #000000 | #1C232E | Fail |
| button partners | 1.35:1 | 4.5:1 | #000000 | #1D242F | Fail |
| div store and/or access … | 1.35:1 | 4.5:1 | #000000 | #1D242F | Fail |
| span MORE OPTIONS | 1.33:1 | 4.5:1 | #000000 | #1D232E | Fail |
| span AGREE | 1.33:1 | 4.5:1 | #000000 | #1C232E | Fail |
| a Recursos | 1.34:1 | 4.5:1 | #000000 | #1C242F | Fail |
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 82/100 — 5 failing, 22 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 |
|---|
header.header-wrapper > div.container > div.right-section > button.nav-menu-opner header.header-wrapper > div.container > div.right-section > button.nav-menu-opner |
div.hero-search-wrapper > div.container-autocomplete > form.flex > button div.hero-search-wrapper > div.container-autocomplete > form.flex > button |
body.experiment_variant > div#modals > button.close-modal body.experiment_variant > div#modals > button.close-modal |
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
li.strategy-item > a.strategy-link > figure > img.lazy li.strategy-item > a.strategy-link > figure > img.lazy |
li.strategy-item > a.strategy-link > figure > img.lazy li.strategy-item > a.strategy-link > figure > img.lazy |
li.strategy-item > a.strategy-link > figure > img.lazy li.strategy-item > a.strategy-link > figure > img.lazy |
body.experiment_variant > footer > section.unlock-banner-section > img.lazy body.experiment_variant > footer > section.unlock-banner-section > img.lazy |
ul.socail-ftr > li > a.twitter > img ul.socail-ftr > li > a.twitter > img |
Screen reader users rely on frame titles to describe the contents of frames. Learn more about frame titles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div#modals > div.modal-content > div.embed-container > iframe div#modals > div.modal-content > div.embed-container > iframe |
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.show-on-mob-deal-for-win > section.bsx-hero-section > div.hero-upper-text > a.flex div.show-on-mob-deal-for-win > section.bsx-hero-section > div.hero-upper-text > a.flex |
BlueStacks Logo section.unlock-banner-section > div.container > div.unlock-content > a.play-store-btn |
div.follow-us-on > ul.socail-ftr > li > a.discord div.follow-us-on > ul.socail-ftr > li > a.discord |
div.follow-us-on > ul.socail-ftr > li > a.Reddit div.follow-us-on > ul.socail-ftr > li > a.Reddit |
div.follow-us-on > ul.socail-ftr > li > a.facebook div.follow-us-on > ul.socail-ftr > li > a.facebook |
div.follow-us-on > ul.socail-ftr > li > a.twitter div.follow-us-on > ul.socail-ftr > li > a.twitter |
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.
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 |
|---|
Apoiado por div.show-on-mob-deal-for-win > div.section-backed-by > div.container > h3 |
BlueStacks Prime no Mac e no PC: jogabilidade sem anúncios, economia extra em j… li.strategy-item > a.strategy-link > div.strategy-item-content > h4.blog-title |
These are opportunities to improve keyboard navigation in your application.