Very newbie question, sorry in advance if it comes out to be a simple answer, but my Helvetica font isn't showing up. This is my code:
@import "..\fonts\Helvetica";
@import "..\fonts\Neue Helvetica";
body {
background: #E1E1E1;
font-family: Helvetica Neue, Arial, serif;
}
It always shows up as Arial! I don't have Helvetica Neue installed on my system, even though I have the .ttf, because I wanna include it on my site and just call an import there so everyone can see it, regardless of their installation. I've got them in the same project under a different folder path as shown above. How can I accomplish this? Thanks!