I can set a font awesome icon with the following style, which works fine:
.my-title:before{
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f568";
}
But I can't set neither Facebook nor Instagram icons. For example "f082" is the content for Facebook:
.my-title:before{
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f082";
}
Doesn't work even I remove font-weight, or change it to 400.
Thanks.