How to make a font icon from png

There is an image in PNG format:

How do I create a font icon from it?

Author: eanmos, 2018-01-26

1 answers

What's wrong with the existing Font-Awesome sets? To the point: icons are not made from bitmap images. You need to vectorize it in svg (I use Inskape), make it black, and then create an icon font (I use https://icomoon.io/app/#/select)

<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<i class="fa fa-chrome"></i>
 0
Author: zhurof, 2018-01-26 14:00:37