It's pretty easy to embed font to windows phone application, but I cannot find way to use my fonts in WebBrowser control, that is showing static html file. Is there any way to do it?
I'm using code below to show my html file:
Uri uri = new Uri(AppResources.red_termsOfUse_URI, UriKind.Relative);
Stream stream = Application.GetResourceStream(uri).Stream;
using (StreamReader reader = new StreamReader(stream, new System.Text.UnicodeEncoding()))
{
string htmlDocument = reader.ReadToEnd();
this.webBrowser.NavigateToString(htmlDocument);
}