Thanks for Your reply mc73 . i have tested with native browser. is there any way to embeed my font with webview load url.
Try this.
1. Copy following line to your_file.html between the <header></header>
<link rel='stylesheet' href='file:///android_asset/stylesheet.css' type='text/css'>
2. copy the following to text edit, but replace the FontName with your native web utf-8 font name and save as stylesheet.css, and add all the fonts and stylesheets.css to Dir.Asset Folder
/* Start copy below this line */
@font-face {
font-family: 'NameFontFamilyHere';
src: url('file:///android_asset/FontName.eot');
src: url('file:///android_asset/FontName.eot?#iefix') format('embedded-opentype'),
url('file:///android_asset/FontName.woff') format('woff'),
url('file:///android_asset/FontName.ttf') format('truetype'),
url('file:///android_asset/FontName.svg#FontName') format('svg');
font-weight: normal;
font-style: normal;
}
body {font-family: NameFontFamilyHere;}
h1, h2 {font-family: NameFontFamilyHere; font-weight: normal}
textarea{font-family:NameFontFamilyHere;}
p{font-family: NameFontFamilyHere;}
/* End copy above this line */
Hope this will help or path to right direction.