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.
| Level | WCAG 2.2 | Section 508 - 2017 | Key |
|---|
| A |  |  | Pages with level A issues are unusable for some people |
|---|
| AA |  |  | Pages with level AA issues are very difficult to use |
|---|
| AAA |  | | Pages with level AAA issues can be difficult to use |
|---|
| Priority | Description and URL | Guideline and Line Number | Count |
|---|
Level A
3 issues on 1 pages | |
 | Headings 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 127 | |
| https://dreamexchin.com/ | | |
 | Links 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 127 | |
| https://dreamexchin.com/ | | |
 | This 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 class='...'>...</button>
| Line 149 | |
| <button class='...'>...</button>
| Line 155 | |
| <button onclick='...' type='button' id='...' class='search-trigger ...'>...</button>
| Line 165 | |
| https://dreamexchin.com/ | | |
Level AA
2 issues on 1 pages | |
 | Ensure 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: | | |
| 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 2974 | |
| https://dreamexchin.com/ | | |
 | The 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'>...</button>
| Line 3190 | |
| :focus has outline: invert none 0px <button class='faq-question'>...</button>
| Line 3197 | |
| :focus has outline: invert none 0px <button class='faq-question'>...</button>
| Line 3204 | |
| :focus has outline: invert none 0px <button class='faq-question'>...</button>
| Line 3211 | |
| :focus has outline: invert none 0px <button class='faq-question'>...</button>
| Line 3218 | |
| https://dreamexchin.com/ | | |
Level AAA
2 issues on 1 pages | |
 | Avoid 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 target='_blank' title='WordPress Car Rental Theme' href='...a'>...l</a>
| Line 3512 | |
| https://dreamexchin.com/ | | |
 | Ensure 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: | | |
| 4.56 with
color: rgb(255,255,255)background: rgb(224,49,0)
font-size: 10.50ptfont-weight: 500<div class='...'>Get DreamExch ID</div>
| Line 173 | |
| https://dreamexchin.com/ | | |
| Expand all 7 issues | | |