I am injecting Email addresses using PHP into a web-page containing HTML. When I inspect element on the page the Email address is shown as Email: Bob@Bob.com, but the actual display on the page is Bob Bob.com, does anyone know the problem? I am using an imported font, if that is relevant.
If your external font doesn't contain the @
character, you can change the font for the very @
character only.
Say, Bob<span style="font-family:sans-serif">@</span>Bob.com
which will result in displaying @
anyways, but in Arial or whatever default sans-serif font is in your browser.
I would not say this is a PHP question though. Pure HTML/CSS