I want to import https://www.cufonfonts.com/font/helvetica-neue-lt-pro-2 this font to my project. I'm using scss on my project. I downloaded font files there are a lot of woff files. How should I do?
You should be able to do something like:
@font-face { font-family: 'xyz'; src: url(assets/fonts/xyz.woff) format("woff"); }
Then use it like so:
div { font-family: 'xyz'; }
1.4m articles
1.4m replys
5 comments
57.0k users