How to read other language in nook ?
i have some my own book not by english , and i trans it to my nook , but it couldnt display correct.
Does anyone know how to fix it ?
i used to use this code but it seems doesnt work
@font-face {
font-family: "DroidFont", serif, sans-serif;
font-weight: normal;
font-style: normal;
src: url(res:///system/fonts/DroidSerif-Regular.ttf);
}
@font-face {
font-family: "DroidFont", serif, sans-serif;
font-weight: bold;
font-style: normal;
src: url(res:///system/fonts/DroidSerif-Bold.ttf);
}
@font-face {
font-family: "DroidFont", serif, sans-serif;
font-weight: normal;
font-style: italic;
src: url(res:///system/fonts/DroidSerif-Italic.ttf);
}
@font-face {
font-family: "DroidFont", serif, sans-serif;
font-weight: bold;
font-style: italic;
src: url(res:///system/fonts/DroidSerif-BoldItalic.ttf);
}
body {
margin-right: 8pt;
font-family: 'DroidFont', serif;
}
|