インターネットに接続せずに、ダウンロードしたフォントをローカル Web ページ (XAMPP) で使用できますか? 一部の人々はおそらくインターネット接続を買う余裕がなく、自分のコンピューターを仕事のためだけに使用しているため、フォントを表示するためにこれが必要です。
これは Web フォントです: 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;
}