如何在android手机中嵌入字体样式?

时间:2014-05-19 02:50:06

标签: javascript cordova

我开发了phonegap应用程序。在我的应用程序有两种语言英语和高棉语。但我的设备不显示高棉语。如何在代码中嵌入字体?

1 个答案:

答案 0 :(得分:1)

将CSS放在一个文件中,例如example.css:

@font-face {
    font-family: "customfont";
    src: url("./fonts/arial.ttf") format("opentype");   
        /* Make sure you defined the correct path, which is related to
            the location of your file `example.css` */ 
    }
    body {
        font-family: "customfont";
        font-size:30px;
    }

- 在HTML中引用你的CSS文件example.css:

<link rel="stylesheet" href="./css/example.css" />

确保遵循正确的目录结构

例如,假设您有以下目录结构:

<强> WWW

  • example.html的

<强> CSS

  • example.css

<强>字体

  • ARIAL.TTF