I am looking to break up a word for display purposes, but would like to maintain accessibility if a screen reader were to access the word. Is this possible?
<span>T</span><span>itle</span>
<span>T</span><span>i</span><span>t</span><span>l</span><span>e</span>
I would like the two examples to read "Title" as that is essentially how they would display. The entities do not need to be spans and the block can be wrapped in another element if that is required.
What would be the best way of achieving this behaviour while allowing the letters to be styled individually, without the use of javascript?