My webview charge viewing a page from a server
private String url = "http://192.168.33.37/gestpresenze/index.html";
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.webview);
    //carichiamo la webview dentro il layout specificato
    mWebView = (WebView) findViewById(R.id.webView1);
    mWebView.getSettings().setJavaScriptEnabled(true);
    mWebView.getSettings().setLoadsImagesAutomatically(true);
    mWebView.getSettings().setDomStorageEnabled(true);
    mWebView.getSettings().setGeolocationEnabled(true);
    mWebView.setWebChromeClient(new WebChromeClient());
    mWebView.loadUrl(url);
}
Is it possible that user view this page with a font determined not by the CSS of the page on the server but from a font of the app?
For example, the method setDefaultFixedFontSize sect font established or that of the CSS of the page loaded ?
 
     
     
    