Today I made an interesting observation on my website. Font Awesome was not loading properly on Chrome. Instead of displaying the double down arrow in the gradient circle, it was missing on my laptop's Chrome browser. Interestingly, it appeared correctly on Chrome on my Google Pixel. I suspect that they might be different versions of the browser, one being for a mobile device. The strange part is that it was working fine when I tested it earlier, and I haven't made any changes to the code. I'm really puzzled by this.
In the head section of my website, I have this code:
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
Below is the snippet of code for the font-awesome library that I am using:
<div class="arrowContainer">
<div class="arrow"><i class="fa fa-angle-double-down" aria-hidden="true"
style="font-size:36px; color: white"></i></div>
</div>