[Skip navigation links]

Site Report

This tab shows accessibility issues, indicating problems for older users, people with disabilities or accessibility needs. Automated testing cannot detect all accessibility issues, so should be used alongside human testing.

LevelWCAG 2.2Section 508 - 2017Key
ALevel A, 5 issuesLevel A, 5 issuesCritical Pages with level A issues are unusable for some people
AALevel AA, 3 issuesLevel AA, 2 issuesVery Important Pages with level AA issues are very difficult to use
AAALevel AAA, 2 issuesLess Important Pages with level AAA issues can be difficult to use
PriorityDescription and URLGuideline and Line NumberCount

Level A

6 issues on 1 pages

CriticalHeadings should not be empty. ARIA 5.2.8 1 pages
Add visible text to the heading, or alt text if the heading contains an image. Screen readers read out page headings, allowing users to quickly skip to a section, but some older screen readers do not ignore empty headings.
<h1 class='...'><a href='https://dreamexchin.com'>...</a></h1>
Line 140

https://dreamexchin.com/

CriticalHTML form control has no accessible name. WCAG 2.2 A F68 Section 508 (2017) A F68 1 pages

A label (or name) linked to the control allows screen readers to voice the label correctly when reading the control. To add a label do one of the following:

  • Use a label element with the for attribute set to the ID of the form control
  • Wrap a label element around the form control
  • Add a title attribute
  • Add an aria-label attribute
  • Add an aria-labelledby attribute
4.1.2
<input type='checkbox'>
Line 308

https://dreamexchin.com/

CriticalLinks must have an accessible name. WCAG 2.2 A F89 Section 508 (2017) A F89 1 pages

A link name allows screen readers to voice what the links does. If there is no link content, or the link content is hidden by CSS, screen readers have nothing to read, so read out the URL instead. To add a name do one of the following:

  • Add text between the a element start and end tags
  • Add an aria-label attribute
  • Add an aria-labelledby attribute
  • Add an img alt attribute labeling the link if it contains an img element
2.4.4 2.4.9 4.1.2
<a href='https://dreamexchin.com'><span class='custom-logo-link'>...</span></a>
Line 140

https://dreamexchin.com/

CriticalThe element button must not appear as a descendant of the a element. HTML5 WCAG 2.2 A 4.1.2 Section 508 (2017) A 4.1.2 1 pages
The name, role, and state of an interactive control is ignored when the control is nested inside another interactive control, meaning the control is voiced incorrectly in a screen reader.
<button class='dreamexch-btn ...'>GET NEW ID FROM WHATSAPP</button>
Line 317

https://dreamexchin.com/

CriticalThe interactive element button must not appear as a descendant of the a element. HTML5 WCAG 2.2 A 4.1.2 Section 508 (2017) A 4.1.2 1 pages
The name, role, and state of an interactive control is ignored when the control is nested inside another interactive control, meaning the control is voiced incorrectly in a screen reader.
<button class='dreamexch-btn ...'>GET NEW ID FROM WHATSAPP</button>
Line 317

https://dreamexchin.com/

CriticalThis button element contains no text and has no accessible name. WCAG 2.2 A 4.1.2 Section 508 (2017) A 4.1.2 1 pages

A programmatically determined name allows screen readers to tell users what the control does. To add a name do one of the following:

  • Add text between the button start and end tags
  • Add a title attribute
  • Add an aria-label attribute
  • Add an aria-labelledby attribute
  • Add an img alt attribute if the button contains an img element
<button onclick='...' type='button' id='...' class='search-trigger ...'>...</button>
Line 178
<button class='...'>...</button>
Line 162
<button class='...'>...</button>
Line 168

https://dreamexchin.com/

Level AA

3 issues on 1 pages

Very ImportantEnsure that text and background colors have enough contrast. WCAG 2.2 AA 1.4.3 Section 508 (2017) AA 1.4.3 1 pages

Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.

  • The contrast ratio should be 3.0 or more for 18 point text, or larger
  • The contrast ratio should be 3.0 or more for 14 point bold text, or larger
  • The contrast ratio should be 4.5 or more for all other text
1.4.6
The text color to background color contrast ratio after composition is:
1.98 with color: rgb(255,255,255)background: rgb(37,211,102)
font-size: 11.25ptfont-weight: 700
<button class='dreamexch-btn ...'>GET NEW ID FROM WHATSAPP</button>
Line 317
3.29 with color: rgb(255,255,255)background: rgb(74,144,226)
font-size: 12ptfont-weight: 600
<a href='.../' class='download-btn ios'>Download for iOS</a>
Line 3119

https://dreamexchin.com/

Very ImportantFor input type=password elements, set the autocomplete attribute to new-password or current-password in order to identify input purpose. WCAG 2.2 1.3.5 1 pages
Specifying what kind of data is expected in a particular input field makes filling out forms easier, especially for people with cognitive disabilities. While type=password specifies the type of input, it doesn't specify its purpose. Autocomplete values such as new-password and current-password are a well-supported way of identifying input purpose.
<input type='password' placeholder='Password'>
Line 305

https://dreamexchin.com/

Very ImportantThe CSS outline or border style on this element makes it difficult or impossible to see the link focus outline. WCAG 2.2 AA F78 Section 508 (2017) AA F78 1 pages
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See :focus-visible for more information.

Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:

  • Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
  • Firefox (obscures the focus indicator on links)
2.4.7
:focus has outline: invert none 0px
<button class='faq-question'>1️⃣ How do I ... on Dreamexch?<span>+</span></button>
Line 3335
:focus has outline: invert none 0px
<button class='faq-question'>2️⃣ Is ... for 18+ users?<span>+</span></button>
Line 3342
:focus has outline: invert none 0px
<button class='faq-question'>3️⃣ What ... are available?<span>+</span></button>
Line 3349
:focus has outline: invert none 0px
<button class='faq-question'>4️⃣ How fast are withdrawals?<span>+</span></button>
Line 3356
:focus has outline: invert none 0px
<button class='faq-question'>5️⃣ Is ... available 24/7?<span>+</span></button>
Line 3363

https://dreamexchin.com/

Level AAA

2 issues on 1 pages

ImportantAvoid specifying a new window as the target of a link with target=_blank. WCAG 2.2 AAA F22 1 pages
Displaying new windows without warning can be very confusing to non-sighted and mobile users. Some screen readers and mobile devices give very little indication a new tab or window has opened. If you cannot avoid displaying a new window, insert an "opens in a new window" warning into the link text or add the warning to the link using a title attribute or aria-describedby attribute. 3.2.5
<a href='https://wa.link/dreamexch' target='_blank' rel='nofollow noopener ...'>...</a>
Line 3657
<a target='_blank' title='WordPress Car Rental Theme' href='...a'>...l</a>
Line 3540

https://dreamexchin.com/

ImportantEnsure that text and background colors have a 7:1 contrast ratio. WCAG 2.2 AAA 1.4.6 1 pages

Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.

  • The contrast ratio should be 4.5 or more for 18 point text, or larger
  • The contrast ratio should be 4.5 or more for 14 point bold text, or larger
  • The contrast ratio should be 7.0 or more for all other text
The text color to background color contrast ratio after composition is:
6.40 with color: rgb(213,213,213)background: rgb(106,27,154)
font-size: 12.75ptfont-weight: 500
<p>Dreamexch is a leading online ... gameplay across all devices.</p>
Line 3479
6.40 with color: rgb(213,213,213)background: rgb(106,27,154)
font-size: 11.25ptfont-weight: 500
<li>Blog</li>
Line 3507
5.00 with color: rgb(239,179,63)background: rgb(106,27,154)
font-size: 17.25ptfont-weight: 400
<h4 class='wp-block-heading'>Contact info</h4>
Line 3521
6.40 with color: rgb(213,213,213)background: rgb(106,27,154)
font-size: 12.75ptfont-weight: 500
<p>WhatsApp {<a href='https://wa.me/+919750049142'>+919750049142</a>...</p>
Line 3523
6.40 with color: rgb(213,213,213)background: rgb(106,27,154)
font-size: 12.75ptfont-weight: 500
<p>Email... support@dreamexchin.com</p>
Line 3525

https://dreamexchin.com/

Expand all 11 issues