Archived topic
How do I add a non-Google font -- Neuropol?
2 replies · Started by Richard on September 1, 2015
Hi Tom,
How do I add a non-Google font -- Neuropol -- for a header? I have GP Premium.
Thanks.
Dick Robinson
You'll have to use CSS.
Is that a web font? If so, you'll have to use @font-face: https://css-tricks.com/snippets/css/using-font-face/
Let me know if you need more info :)
// IN CSS :
@font-face {
font-family:"Neuropol";
src: url('http://intern-dev.obrary.com/configurator-fonts/neuropob.ttf');
}
--------------------------------------------------
element {
font-family: Neuropol, sans-serif;
