Angular 9 Font Awesome | Install Font Awesome Icon Angular 9
In this post we will give you information about Angular 9 Font Awesome | Install Font Awesome Icon Angular 9. Hear we will give you detail about Angular 9 Font Awesome | Install Font Awesome Icon Angular 9And how to use it also give you demo for it if it is necessary.
This article is focused on how to install font awesome using angular 9 cli. you’ll learn install font awesome angular 9. This article will give you simple example of npm install font awesome angular 9. i would like to show you install font-awesome angular 9. You just need to some step to done angular 9 install font awesome icons.
Icons is a basic requirement of each project. icons indicate more, you don’t need to write label for it. icons also make beautiful layout of our application. If you think to use icons in your application then you will always prefer to use font awesome icons. font-awesome provide lots of icons and you can use it very easily.
So, i think example, i will learn how to install font awesome icons in angular 9 application step by step. it’s very simple but, for new developer that can understand how it you can do it.
Let’s see bellow steps:
Step 1: Create New App
You can easily create your angular app using bellow command:
ng new my-new-app
Step 2: Install font-awesome
In this step, you need to just install font-awesome on your angular 9 and import css file to style.css file. this is only for css importing. so you can run command bellow:
npm install font-awesome --save
Step 3: Import CSS
After successfully, installed font-awesome, we need to import css files on angular.json file. so let’s add following lines on it.
angular.json
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"appFont": {
....
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"node_modules/font-awesome/css/font-awesome.css",
"src/styles.css"
],
......
OR, you can also give path like as this way, if above is not working:
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"appFont": {
....
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"../node_modules/font-awesome/css/font-awesome.css",
"src/styles.css"
],
......
Step 4: Use Font Awesome Icons
Now we are ready to use font awesome classes in our html file. so let’s add following code on your app.component.html file.
src/app/app.component.html
<h1>Angular 9 Font Awesome | How to install font awesome in Angular 9? - ItSolutionStuff.com</h1>
<i ></i>
<i ></i>
<i ></i>
<i ></i>
<i ></i>
You can run application.
You can also use icons from here: Font Awesome Icons List.
I hope it can help you…
Hope this code and post will helped you for implement Angular 9 Font Awesome | Install Font Awesome Icon Angular 9. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs