I need to add some social media icons I'm not sure other than font awesome if there is anything else I can use for free, I installed the package and added
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
here is my Style.css :
@font-face {
font-family: "FutoSans";
src: local("FutoSans"), url(assets/fonts/FutoSans-Bold.ttf) format("truetype");
}
here is my angular.json
"styles": [
{
"input": "node_modules/@progress/kendo-theme-default/dist/all.css"
},
"src/styles.css",
"node_modules/@fortawesome/fontawesome-free/css/all.min.css"
],
but when I use for example the following tag, it does not show anything
<i class="fab fa-instagram"></i>