我正在使用来自http://www.google.com/webfonts/earlyaccess的 Google 字体,但它没有按预期工作。有任何想法吗。
我在http://jsfiddle.net/UbDcg/4/上设置了一个基本版本,它不像想象的那样工作。
HTML
FONT RESOURCE:<br>
http://www.google.com/webfonts/earlyaccess<br>
<div id="fontTest">
Lohit font why not working ...
</div>
CSS
@import url(http://fonts.googleapis.com/earlyaccess/lohitdevanagari.css);
body{
font-family: verdana,helvetica,arial,sans-serif;
font-size:12px;
}
#fontTest{
background:#e8e8e8;
padding:20px;
margin-top: 20px;
font-family: 'Lohit Devanagari', serif;
}