你需要指定外部使用字型的應用才行。
比較常用的就是google的字型。
窮嘶發發發大已經有提供給你相關的資料了,我就不在另行提供。
另外一種方式就是自行下載字型檔回來放在你的server上。再運用css的implort的方式,來達到你要的字型顯示。(你可以自行下載google的css回來參考)
@import url(https://fonts.googleapis.com/earlyaccess/cwtexkai.css);
font-family: 'cwTeXKai', serif;
從你的css來看。看不到你的body定義。
你可以po一下你完整的css嘛??
正常因該要
@import url(https://fonts.googleapis.com/earlyaccess/cwtexkai.css);
body{
font-family: 'cwTeXKai', serif;
}
一下可以一下不行..,但手機還是不行..
不過jsfiddle再手機上看卻可以看到標楷體..
http://jsfiddle.net/27ujnx43/
謝謝大家,已解決
加了以下語法
@font-face {
font-family: 'cwTeXKai';
src: url('webfont.eot'); /* IE9 Compat Modes /
src: url('webfont.eot?#iefix') format('embedded-opentype'), / IE6-IE8 /
url('webfont.woff2') format('woff2'), / Super Modern Browsers /
url('webfont.woff') format('woff'), / Pretty Modern Browsers /
url('webfont.ttf') format('truetype'), / Safari, Android, iOS /
url('webfont.svg#svgFontName') format('svg'); / Legacy iOS */
}