How to install only required fonts from Font Awesome?

font-awesome

Solution

Perhaps this helps: fontello

fontello lets you choose your icons and compile your own version

Problem

I would to use a couple of icons from Font Awesome. I see that we can download the entire font-awesome directory and use simple code like `<i class="fa fa-camera-retro"></i>` and use `fa-camera-retro` to display the icons. Is it possible for me to download only the fonts I will be using? For the above example if I am using only `<i class="fa fa-camera-retro"></i>`, `fa-camera-retro`, I would like to reduce the directory size by only using the files related to this icon.

Original source