Using Font Awesome in Angular 2+

Anish Sachdeva
1 min readMay 2, 2020

--

Font awesome is an icon set and tool kit to be used in front-end applications that provides a plethora of scalable vector grapics to use in your application.

It is very easy to add it and start using it in your angular application.

  1. Add Fontawesome in your project
Add Fontawesome to your angular project

After this step, it should be succesfully installed and added in your package.json file.

2. Now, we will add the font awesome style sheet in our angular project. Naviagte to the styles.css file in src directory.

Adding the font awesome css import in main src/styles.css file

3. Now, we can use font awesome in our angular application 😊

--

--