我开发了phonegap应用程序。在我的应用程序有两种语言英语和高棉语。但我的设备不显示高棉语。如何在代码中嵌入字体?
答案 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 强>
<强> CSS 强>
<强>字体强>