Offline font question
Offline font question
Out of context: Reply #1
- Started
- Last post
- 4 Responses
- Hombre_Lobo0
You can reference the font locally using @font face,
Eg-
@font-face {
font-family: myfontname;
font-style: normal;
font-weight: 400;
src: url(http://localhost/xampp/mysit... format('woff');
}Then in the CSS just use p {font-family:myfontname;}
More here - http://www.w3schools.com/cssref/…
Hope that helps.