我正在尝试@font-face
在我正在设计的网站上使用自定义字体。我不知道为什么这次它不起作用。我以前用过没有问题。
这是我的代码(不是来自实际站点,而是我用来测试问题的简化版本):
html
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<link rel="stylesheet" type="text/css" href="./css/stylesheet.css">
</head>
<body>
<p>Loremm ipsum</p>
</body>
</html>
css(我把重置留在里面)
/*--------------------------*/
/*----------RESET-----------*/
/*--------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
font-family:myfont;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/*-------------------------*/
/*-----------MAIN----------*/
/*-------------------------*/
@font-face {
font-family:myfont;
src:url('./fonts/myfont.ttf'),
url('./fonts/myfont.eot');
}
我的 index.html 在html/
我的字体文件在html/fonts/
我的 CSS 在html/css/
任何人都可以看到问题吗?
我已经在 chrome 和 firefox 中对此进行了测试,它在我的计算机上进行编辑。