可以在沒有互聯網連接的情況下在本地網頁(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;
}
您必須使用網絡字體工具包,您可以從像convertfonts.com這樣的網站下載,包含樣式和字體文件,字體將用於本地開發,但爲此,您首先需要一個otf或ttf文件爲字體下載webkit – sven
非常感謝boom_hiva!現在的問題是我必須放置所有文件,因爲我試圖加載它們,沒有結果。謝謝!! – heyplaynow
你打算如何訪問沒有互聯網連接的人? – CustomX