我從網上下載該網站上的字體:@字體面HattoriHanzoLight不起作用
http://www.fontsquirrel.com/fonts/Hattori-Hanzo
這裏是我的代碼:
<style type="text/css">
@font-face {
font-family: 'HattoriHanzoLight';
src: url('hattori_hanzo.otf') format('opentype');
font-weight: normal;
font-style: normal;
}
</style>
</head>
<body style='font-family: HattoriHanzoLight; font-size: 19px;'>
content
</body>
我的HTML文件和我的字體文件是在同一目錄。
爲什麼我還能看到默認字體?
源複製和粘貼你把otf文件放在哪裏?你使用的是什麼瀏覽器? – BoltClock
字體與我的test.html文件位於同一目錄,並且我使用的是firefox 8 windows 7 – ana
font-family是否必須保留引號? – bozdoz