Reputation: 119
I'm setting up a typewriter page with a local font. I'm using @font-face to import it but it won't render in Safari. It renders on google Chrome.
Here is the web page https://www.dynamik.systems/typewriter/ (you have to press some keys to see some letters).
@font-face {
font-family: "dynamik";
src: url('http://www.dynamik.systems/wp-content/themes/fonts/DynamikGX.eot') format('opentype'),
url('http://www.dynamik.systems/wp-content/themes/fonts/DynamikGX.ttf') format('truetype'),
url('ttp://www.dynamik.systems/wp-content/themes/fonts/DynamikGX.woff') format('woff');
}
#content{
font-family: "dynamik";
}
Thanks on behalf!
Upvotes: 2
Views: 196
Reputation: 440
Looks like you have two issues:
There are also few additional rules you can add to font-face e.g:
Upvotes: 2