I have a client who requires a specific character in their name to be underlined. How can this be achieved using the alt attribute of an img element?
<img alt="ab<u>c</u>def" />
<img alt="ab<u>c</u>def" />
<img alt="ab<span style='text-decoration:underline;'>c</span>def" />
My expected result is that 'c' will be underlined, but instead, it appears as literal text.