I'm having a task that require Voice Assistant on Android to read "monday to friday" for the text "Monday - Friday" displayed on HTML page.
This is my code:
<html>
<p tabindex="0">We have received your request.</p>
<p tabindex="0"><strong>Have a question?</strong></p>
<p tabindex="0">You can call us on <a href="tel:132265">13 22
65</a> for all general and credit card enquiries<br></br>
<span aria-labelledby="to">Monday - Friday</span> 8am - 7pm (AEST/AEDT)<br>
</br>
Weekends 9am - 6pm (AEST/AEDT)</p>
<p tabindex="0">Or, you can call us on <a href="tel:131012">13 10
12</a> for all business banking, agribusiness banking and nabhealth
enquiries<br></br>
<span aria-labelledby="to">Monday - Friday</span> 8am - 9pm (AEST/AEDT)<br>
</br>
Weekends 9am - 6pm (AEST/AEDT)</p>
<p tabindex="0"> </p>
<span id="to">monday to friday</span>
</html>
I have try <span aria-label="monday to friday">Monday - Friday</span>
but this doesn't work either.
Any suggestion is much appreciated