https://tech.jastin.net/how-to-display-font-awesome-only-css/
Font Awesomeのアイコンは以下のように、faクラスでFont Awesomeをフォントファミリーとして指定し、fa-{アイコン名}クラスの疑似要素:beforeのcontentプロパティでアイコンの種類を指定しています
記事タイトル
/*----------------------*/
/*-Font Awesome-*/
/*----------------------*/
.container{
padding-top: 20px;
}
.entry-title:before{
content: '\f046';
display: inline-block;
font-family: FontAwesome;
font-weight: normal;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

