Is there any way to implement custom fonts using something along the lines of the following? –
1 @font-face {
2 font-family: custom_font;
3 src: url(‘custom_font.ttf’);
4 }
Followed by:
1 p.custom_font{
2 font-family: custom_font; /* no .ttf */
3 }
I have the .tff of the font(Ghostwriter.tff) uploaded to the root directory.
I’ve been fiddling with this in the theme(awesome by the way) and just can seem to make it work :-/
Website: http://dreamakid.com
Hoping to implement the custom text into menu, page/post titles, etc…
Any help is greatly appreciated!