0
爲什麼我不能嵌入字體?嵌入打開式字體
的index.php
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>Some Title</title>
<link href='img/fav.png' rel='icon'>
<link href="index.css" rel="stylesheet">
</head>
<body>
<div id="logo01">Some Text</div>
</body>
</html>
index.css
@font-face {
font-family: harrington-normal;
src: url("harrington-normal.otf") format("opentype");
}
#logo01{
font-family:harrington-normal;
font-size:5.9rem;
color:#ffffff;
}
#logo01
不是哈靈頓字體!
index.php
,index.css
和harrington-normal.otf
都在根文件夾內。 我正在使用Chrome。
控制檯說:GET http://localhost/stenaljubavi.net16.net/up/harrington-normal.otf .....index.php:325
查看頁面源 - 行325: <script src="jquery-2.1.4.min.js"></script>
任何想法?