unicons
unicons copied to clipboard
[Question] how to get fonts for local installation
Hi,
I need to have the font hosted on the server and cannot use external link for security reason.
I have found the .ttf And multiple .woff2 files (based on the online css file) and multiple .svg
Where can I found the regrouped files for .woff .woff2 .eot .svg
Or explain how to get it working locally without using any external files.
Thanks
Hello @lenamtl
you can convert .ttf font to other format here (https://transfonter.org/)
Thank you
another way - grab original fonts from here https://unicons.iconscout.com/release/v2.1.0/css/unicons.css
and folow the paths to the fonts
https://unicons.iconscout.com/release/v2.1.0/fonts/unicons-0.ttf
Hi @lenamtl,
To get the files for local installation, just execute the next command:
npm install --save @iconscout/unicons
And you will find all CSS and fonts in the node_modules/@iconscout/unicons/
folder.
Correct @Everhard