可以在没有互联网连接的情况下在本地网页(XAMPP)上使用下载的字体吗?我需要这个来查看字体,因为有些人可能买不起互联网连接,他们只使用他们的电脑来工作。
这是网络字体: http: //openfontlibrary.org/en/font/didact-gothic
我试过这个没有运气:http ://css-tricks.com/snippets/css/using-font-face/
提前致谢!!!!
编辑
我认为存储文件的地方是问题,因为我有这个 .css 并且没有工作。我所有文件的位置是/opt/lammp/htdocs
@font-face {
font-family: 'DidactGothicMedium';
src: url('didactgothic.eot');
src: url('didactgothic.eot') format('embedded-opentype'),
url('didactgothic.woff') format('woff'),
url('didactgothic.ttf') format('truetype'),
url('didactgothic.svg#DidactGothicMedium') format('svg');
}
p {
font-family: 'Didact Gothic';
font-weight: normal;
font-style: normal;
padding-left: 25px;
padding-right: 25px;
}
input {
font-family: 'Didact Gothic';
font-weight: normal;
font-style: normal;
}