Fontawesome: how to use completely in local?

font-awesome

Solution

Check the last version of FontAwesome.

You will download a .zip with all you are looking for in the fonts folder

font-awesome-4.1.0
 - fonts 
   + FontAwesome.otf
   + fontawesome-webfont.eot
   + fontawesome-webfont.svg
   + fontawesome-webfont.ttf
   + fontawesome-webfont.woff

EDIT : If you look correctly in the variables.less and path.less files you will see that the font are grab at the url `"../fonts/fontawesome.xxx"`

Problem

I'd like to use fontawesome in a closed net environment. So we can't access CDN. I know I can simply download the css, but where are the font files? CSS actually point to this ``` @font-face { font-family: "FontAwesome"; font-style: normal; font-weight: normal; src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff?v=4.1.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.1.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular") format("svg"); } ``` Is it possible to downlaod and use .eot / woff / ttf / svg locally ?

Original source