Search code examples
htmlcssfont-awesomefont-awesome-5

Font Awesome 5, Why the instagram icon is missing?


why there is no instagram icon here

.share{
display:inline-block;
color:#0099cc;
font-size:25px;
}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css">

<i class="fab fa-facebook-square share"></i>
<i class="fab fa-instagram-square share"></i>
<i class="fab fa-twitter-square share"></i>


Solution

  • Update the version of the CDN to the lastest one. It was not there in 5.7 and was add starting from 5.12 (https://github.com/FortAwesome/Font-Awesome/blob/master/CHANGELOG.md#5121---2020-02-04)

    Added

    instagram-square icon FortAwesome/Font-Awesome#9223

    .share {
      display: inline-block;
      color: #0099cc;
      font-size: 25px;
    }
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css">
    
    <i class="fab fa-facebook-square share"></i>
    <i class="fab fa-instagram-square share"></i>
    <i class="fab fa-twitter-square share"></i>