I found out how to write HTML that shows Font Awesome special characters:
Code:
Test Font Awesome
body {
font-family: “Trebuchet MS”;
}
#faw {
font-family: “Font Awesome 5 Free Solid”;
vertical-align: -10%;
}
This is the heading
This is the next sign.
This will work, if the font is installed on the system.
In my application I implemented the font through a TsFontStore component. Now it will work if I use the font in my regular program. However, if I use this text in a TsWebBrowser, the font is not usable (unless of course it is installed in the system).
I'm not sure if this has something to do with the font being local to a process and the web browser operating in a separate process.
How can I let the web browser know also about the font. And the print server as well, because my web pages all are printable.
Maybe TsFontStore needs an augmentation to make some fonts known system wide?