Just tried to use a new font, put it in a folder and linked to it, but I am getting this:
GET http://localhost/mywebsite/fonts/garamond/EBGaramond12-Regular.ttf 403 (Forbidden)
I implemented it like so:
@font-face {
font-family: Garamond;
src: url(../fonts/garamond/EBGaramond12-Regular.ttf);
text-rendering: optimizeLegibility;
}
The path is correct, but I'm not sure why I get a 403. I am using XXAMP on OSX, other fonts work fine.