[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, 6 issuesLevel A, 6 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

7 issues on 10 pages

CriticalElement li not allowed as child element in this context. HTML5 WCAG 2.2 A 1.3.1 Section 508 (2017) A 1.3.1 1 pages
The li element must appear inside a ol or ul element. Without the parent list element it looks like a bullet list, but is not voiced as a list by a screen reader.
<li>...</li>
Line 836
<li>...</li>
Line 848
<li>...</li>
Line 853

https://dubaiexchange-247.com/blog/

CriticalHeadings should not be empty. ARIA 5.2.8 10 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://dubaiexchange-247.com'>...</a></h1>
Line 183

https://dubaiexchange-247.com/

<h2 class='...'><a href='https://dubaiexchange-247.com'></a>...</h2>
Line 187

https://dubaiexchange-247.com/about-us/

<h2 class='...'><a href='https://dubaiexchange-247.com'></a>...</h2>
Line 187

https://dubaiexchange-247.com/online-cricket-id/

<h2 class='...'><a href='https://dubaiexchange-247.com'></a>...</h2>
Line 187

https://dubaiexchange-247.com/sports/

This issue was found on another 6 pages. The trial version is limited to showing issues on 4 pages.
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 value='' name='s' id='s' type='text' class='...'>
Line 342

https://dubaiexchange-247.com/blog/

CriticalIdentify row and column headers in data tables using th elements, and mark layout tables with role=presentation. WCAG 2.2 A F91 Section 508 (2017) A F91 1 pages
Data tables allow screen reader users to understand column and row relationships. Layout tables read cells as a series of unrelated paragraphs with no tabular structure.
Without th or role, screen readers apply heuristics to decide whether a table is a layout table or data table. These heuristics vary greatly between screen readers, and are affected by browser being used, window size, and font size (so the outcome is very unpredictable without th or role).
If a data table has headers marked up using td, then change these to th. If a data table has no headers, add th elements describing each row and/or column. If the table is only used for layout add role=presentation to the table element.

Impact on users:

  • JAWS Reading: Treats tables without th and role as layout tables if the table contains cells above or below certain pixel sizes. This measurement is affected by browser window size, browser font size, and the browser used.
  • NVDA Reading: Applies a layout table heuristic to tables without th and role which varies depending on the browser used and on the window size in some circumstances.
  • VoiceOver Reading: Uses a sophisticated heuristic on tables without th and role, which is similar (but not identical) to the heuristic used by NVDA with Firefox.
1.3.1
<table class='...'>...</table>
Line 517

https://dubaiexchange-247.com/

Criticalimg elements must have an accessible name. WCAG 2.2 A F65 Section 508 (2017) A F65 1 pages
Add an alt attribute describing the image, which screen readers voice instead of the image. Spacer images and purely decorative images should use alt="" without any global ARIA attributes. Do not use alt text containing only spaces since that's voiced as an unlabeled image.

Impact on users:

  • NVDA 2025.3 Chrome 143 Windows 11 Reading: Image ignored.
  • NVDA 2025.3 FF 140 Windows 11 Reading: Image ignored.
  • NVDA 2025.3 Chrome 143 Windows 11 Reading: Image ignored.
  • JAWS 2025.2508.120 Chrome 143 Windows 11 Reading: Image ignored.
  • JAWS 2025.2508.120 FF 140 Windows 11 Reading: Image ignored.
  • JAWS 2025.2508.120 Chrome 143 Windows 11 Reading: Image ignored.
  • VoiceOver macOS 15.7 Safari 26.0 macOS 15.7.1 Reading: Image filename read out.
  • VoiceOver iOS 18.6 Safari iOS 18.6 iOS 18.6.2 Touch: Image filename read out, along with OCR text from image.
1.1.1
<img width='736' height='1288' src='...E' data-lazy-src='...'>
Line 268

https://dubaiexchange-247.com/blog/

CriticalLinks must have an accessible name. WCAG 2.2 A F89 Section 508 (2017) A F89 10 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
img elements with role=presentation or role=none are not included in the link's accessible name.
2.4.4 2.4.9 4.1.2
<a href='https://dubaiexchange-247.com'>...</a>
Line 183

https://dubaiexchange-247.com/

<a href='https://dubaiexchange-247.com'></a>
Line 187
<a href='https://dubaiexchange-247.com/' class='custom-logo-link' rel='home'>...</a>
Line 187

https://dubaiexchange-247.com/about-us/

<a href='https://dubaiexchange-247.com'></a>
Line 187
<a href='https://dubaiexchange-247.com/' class='custom-logo-link' rel='home'>...</a>
Line 187

https://dubaiexchange-247.com/online-cricket-id/

<a href='https://dubaiexchange-247.com'></a>
Line 187
<a href='https://dubaiexchange-247.com/' class='custom-logo-link' rel='home'>...</a>
Line 187

https://dubaiexchange-247.com/sports/

This issue was found on another 6 pages. The trial version is limited to showing issues on 4 pages.
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 10 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 class='...'>...</button>
Line 166
<button class='...'>...</button>
Line 171
<button onclick='...' type='button' id='...' class='...'>...</button>
Line 187

https://dubaiexchange-247.com/

<button class='...'>...</button>
Line 170
<button class='...'>...</button>
Line 175
<button onclick='...' type='button' id='...' class='...'>...</button>
Line 191

https://dubaiexchange-247.com/about-us/

<button class='...'>...</button>
Line 170
<button class='...'>...</button>
Line 175
<button onclick='...' type='button' id='...' class='...'>...</button>
Line 191

https://dubaiexchange-247.com/online-cricket-id/

<button class='...'>...</button>
Line 170
<button class='...'>...</button>
Line 175
<button onclick='...' type='button' id='...' class='...'>...</button>
Line 191

https://dubaiexchange-247.com/sports/

This issue was found on another 6 pages. The trial version is limited to showing issues on 4 pages.

Level AA

3 issues on 4 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 2 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.32 with color: rgb(51,51,51)background: linear-gradient(180.0deg , rgb(20,28,61) , rgb(15,21,48))
font-size: 25.50ptfont-weight: 400
<div class='dx-support-icon'></div>
Line 4276

https://dubaiexchange-247.com/

The text color to background color contrast ratio after composition is:
1.61 with color: rgb(51,51,51)background: rgb(7,5,6)
font-size: 24ptfont-weight: 700
<h1 class='...'>About us</h1>
Line 212
1.61 with color: rgb(51,51,51)background: rgb(7,5,6)
font-size: 14.04ptfont-weight: 700
<h3 data-start='6882' data-end='6902'>Who We Are</h3>
Line 218
1.61 with color: rgb(51,51,51)background: rgb(7,5,6)
font-size: 12ptfont-weight: 400
<p data-start='6903' data-end='7117'>Dubai Exch 247 ... approach.</p>
Line 218
1.61 with color: rgb(51,51,51)background: rgb(7,5,6)
font-size: 14.04ptfont-weight: 700
<h3 data-start='7119' data-end='7140'>Our Mission</h3>
Line 218
1.61 with color: rgb(51,51,51)background: rgb(7,5,6)
font-size: 12ptfont-weight: 400
<p data-start='7141' data-end='7320'>Our mission is ... features.</p>
Line 218

https://dubaiexchange-247.com/about-us/

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 3 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='Enter your password' required>
Line 3556

https://dubaiexchange-247.com/

<input type='password' name='password' placeholder='Enter your password' required>
Line 235

https://dubaiexchange-247.com/login/

<input type='password' placeholder='Password' required>
Line 288

https://dubaiexchange-247.com/signup/

Very ImportantIf you set any of the colors on the body or a elements you must set all of them. WCAG 2.2 AA F24 Section 508 (2017) AA F24 1 pages
In HTML the color attributes are text, bgcolor, link, alink and vlink. In CSS the attributes are color and background-color. Some users have browser defaults set to white text on a black background, so setting one color without setting the others can result in white text on a white background. 1.4.3 1.4.6 1.4.8
The colors used are:
color: rgb(0,0,0) from browser settings
background: rgb(249,199,79) from dubaiexchange-247.com
<button type='submit'>sign up Securely</button>
Line 289

https://dubaiexchange-247.com/signup/

Level AAA

2 issues on 10 pages

ImportantAvoid specifying a new window as the target of a link with target=_blank. WCAG 2.2 AAA F22 10 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 target='_blank' title='WordPress Church Theme' href='...a'>Church WDA</a>
Line 4851

https://dubaiexchange-247.com/

<a target='_blank' title='WordPress Church Theme' href='...a'>Church WDA</a>
Line 229

https://dubaiexchange-247.com/about-us/

<a target='_blank' title='WordPress Church Theme' href='...a'>Church WDA</a>
Line 756

https://dubaiexchange-247.com/online-cricket-id/

<a target='_blank' title='WordPress Church Theme' href='...a'>Church WDA</a>
Line 229

https://dubaiexchange-247.com/sports/

This issue was found on another 6 pages. The trial version is limited to showing issues on 4 pages.
ImportantEnsure that text and background colors have a 7:1 contrast ratio. WCAG 2.2 AAA 1.4.6 2 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:
5.70 with color: rgb(255,255,255)background: linear-gradient(90.0deg , rgb(124,58,237) , rgb(79,70,229))
font-size: 11.25ptfont-weight: 900
<button type='submit'>Login Now</button>
Line 237
5.70 with color: rgb(255,255,255)background: linear-gradient(90.0deg , rgb(124,58,237) , rgb(79,70,229))
font-size: 12ptfont-weight: 900
<a class='dx__btn ...' href='.../' target='_blank' rel='noopener noreferrer'>Go to Login</a>
Line 407
5.70 with color: rgb(255,255,255)background: linear-gradient(90.0deg , rgb(124,58,237) , rgb(79,70,229))
font-size: 12ptfont-weight: 900
<a class='dx__btn ...' href='.../' target='_blank' rel='noopener noreferrer'>Login</a>
Line 563
5.70 with color: rgb(255,255,255)background: linear-gradient(90.0deg , rgb(124,58,237) , rgb(79,70,229))
font-size: 12ptfont-weight: 900
<a class='dx__btn ...' href='.../' target='_blank' rel='noopener noreferrer'>Sign Up</a>
Line 580

https://dubaiexchange-247.com/login/

The text color to background color contrast ratio after composition is:
6.40 with color: rgb(74,93,117)background: linear-gradient(135.0deg , rgb(246,249,255) , rgb(238,244,255))
font-size: 12ptfont-weight: 400
<p>An<strong>Online Cricket ID</strong>on ... delays.</p>
Line 341
6.40 with color: rgb(74,93,117)background: linear-gradient(135.0deg , rgb(246,249,255) , rgb(238,244,255))
font-size: 12ptfont-weight: 700
<strong>Online Cricket ID</strong>
Line 342
6.40 with color: rgb(74,93,117)background: linear-gradient(135.0deg , rgb(246,249,255) , rgb(238,244,255))
font-size: 12ptfont-weight: 400
<p>Your Cricket ID lets you place ... promotions — anytime, anywhere.</p>
Line 346
5.26 with color: rgb(255,255,255)background: rgb(11,92,255)
font-size: 12ptfont-weight: 600
<a href='.../' class='ocx-primary'>Get Cricket ID</a>
Line 384
4.99 with color: rgb(11,92,255)background: linear-gradient(135.0deg , rgb(246,249,255) , rgb(238,244,255))
font-size: 12ptfont-weight: 600
<a href='.../' class='ocx-outline'>Login Now</a>
Line 385

https://dubaiexchange-247.com/online-cricket-id/

Expand all 12 issues