So I've made this element using htmls/css
Now the html for this is just a div containing five spans
<div>
<span>Design</span>
<span>Implement</span>
<span>Test</span>
<span>Optimize</span>
<span>We are here</span>
</div>
However, this won't be understandable for a screen reader as it won't know where "we are here" is pointing.
If this was an image, I could have just added an alt attribute like alt="we are in the test phase"
but since I can't use alt
on a div
, what do I then do?