Blog sitesinin wordpress olduğunu düşünerek şu kodu functions.php dosyanıza ekleyebilirsiniz. Temanızın varsa Child klasöründeki functions.php dosyasında yapmanızı öneririm. Olaki bir tema güncellemesinde bu kod silinmesin diye.

function mytheme_enqueue_fontawesome() {
wp_enqueue_style( 'font-awesome', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css' );
}
add_action( 'wp_enqueue_scripts', 'mytheme_enqueue_fontawesome' );