-
👍 Make sure your HTML elements (especially those that require action to be undertaken by the user - buttons!) have a clear and descriptive text.
-
For example, a button with the text
< backwill be read as 'less button', whereas you meant to convey something like 'Go Back'. -
In such cases, you should add an
aria-labelattribute, which will be read by the screen reader.
<button aria-label="Go back"> < Back </button>