I am trying to make a paragraph of text continuously readable by a screen reader (VoiceOver in this case). The text inside of <p>
gets read by the screen reader but stops once it reaches the first <a>
tag. The user then has to tab through the two links to have the text within the <a>
tags read to them.
<p>
Thank you for visiting this website. If you experience any difficulty in accessing this website please email us at <a href="mailto:[email protected]">[email protected]</a>or call us at<a href="tel:1111111111">111-111-1111.</a>
</p>
Is there a more accessible-friendly way of providing the information to the user?