No, like others, I don't want to use custom fonts. I am looking for list of WebView safe fonts that can be used without using CSS3's custom @font-face, which loads ttf/wof/eot font from web/local storage.
More refined question would be: What are the list font's that are included with Android Operating System which can be used inside WebView?
For example, Arial, Verdana, sans-serif, etc font can be used (not sure), so where exactly to look for to be 100% sure?
Thanks
body { font-family: "Droid Sans"; }
orbody { font-family: "Droid Serif"; }
.... none of them work. Butbody { font-family: Arial; }
probably works, but I want to know where to look for list of available fonts like arial. – Portraiture