0
Guys, I’m having a little problem importing fonts, when I put the native fonts works, with the exception of Helvetica, and when I import a local font or by url it’s like I can’t access the source and then the browser uses the default.
@font-face {
font-family: 'Futura';
src: local('../../../css/font/Futura/Futura.ttc'), url('http://www.projetogiulia.com.br/assets/css/font/Futura/Futura.ttc') !important;
}
There’s something wrong with my code?
Thanks in advance
in place of
local
placeurl
and remove theurl
with the link. (removing Important as well)– RFL