I'm new to CSS. I want to use the Helvetica Neue font in my little project. I have downloaded the .ttf file and I tried to insert it through the @font-face rule:
@font-face{
font-family:"Helvetica Neue Light";
src:url("contenuti/HelveticaNeue-Light.ttf"); /*That's where I put it*/
}
To apply it I used:
.xyz{
font-family:"Helvetica Neue Light";
/*...other things...*/
}
The problem is that neither Safari or Chrome display it
What could I do?