Max CDN link for font awsome cannot be reached - html

I'm using icons from font awesome for my web page.
For some time i have noticed that the link has been broken or unreachable
https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css
Is there some issue with their repository?
I am unable to even download static files from their web page.
http://fontawesome.io/

From a while even i have been getting this error in inspect element were it show connection Error Failed. If u are using icons you can try this link.
<script src="https://use.fontawesome.com/97755550d3.js"></script>

Related

FontAwesome is blocking my page from loading

I linked my fontAwesome to the head of my index.html properly. But whenever I try rending the page with lite Server, the page keeps loading without showing anything including my html text! the page keeps loading saying waiting for font awesome.
is it a problem of liteServer? or it's from font awesome .. any help?

AMP Page - Fontawesome icons not showing on mobile

I just made AMP pages for my website, and everything seems to be fine when I test the website through desktop browser (Chrome), both in normal view and phone-view.
However, I just attempted to access a webpage through Google (which is now showing the amp icon), but when I visit the page, the fontawesome icons aren't showing, which hurts the user interface.
I have this code in the section.
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.4.1/css/all.css" integrity="hidden" crossorigin="anonymous">
Any ideas why the icons aren't showing up on mobile?
After some more digging, I finally found the fix for this.
The resources are being loaded through cdn.ampproject.org, and you get a custom subdomain for your own domain, so lets say your domain is example.com, you need to whitelist example-com.cdn.ampproject.org in Font Awesome.

Font Awesome icons disappeared. Strange characters (Big Commerce)

After doing a few and simple css edits on a Big Commerce site, the search and cart icons suddenly disappeared. They are now displayed as strange characters.
I went into the Big Commerce design backend and did not find anything strange into the code. When inspect the html and css code in the browser the icons are called properly:
<i class="fa fa-search"></i>
What could be wrong? Url to the site is Url
template demo url is enter link description here
Any help is much appreciated, new to Big Commerce.
This can happen when you edit CSS files for the first time. If you download all the theme files and reupload the font-awesome or font folder to WebDAV, that should resolve.
This is what I got from console.
Font from origin 'http://cdn4.bigcommerce.com' has been blocked from
loading by Cross-Origin Resource Sharing policy: No
'Access-Control-Allow-Origin' header is present on the requested
resource. Origin 'http://hearneseed.com' is therefore not allowed
access. The response had HTTP status code 404.
You're linking to a file that does not exist on the server. Also you may want to read up on the Same-Origin Policy!
Here's the official link to the Font-Awesome library. (Don't hyperlink! Download it, host it on your server and link to it that way!)
http://fontawesome.io/
http://fontawesome.io/assets/font-awesome/css/font-awesome.css

Tab icon wont disappear

I'm using bootstrap basic theme and have been editing it, i deleted the code in html: <link rel="icon" href="img/icon.jpg">
But the icon wont go away, I have saved and refresh but the icon is staying there. I've even deleted the image at where its located.
You should try to clear your browser cache and then refresh the page.
Try clearing the browsing history and the application cache. Can you try it on a different browser? If it does not follow in the new browser it should be a cache problem.
You could check if you also uploaded an icon to the root of the webserver under the name: favicon.ico. These icons also get loaded, independent on your html source.

Font Awesome does not work in browser, but works in codepen

I downloaded Font Awesome today and did it a try. In firefox and chrome (latest versions) it appears as blank squares. If a use the CDN link, it doesnt even work, the standard bullets appear instead of the blank squares. But in codepen.io, it just worked fine, using the CDN.
The html i used is just the same as the example of the lists, which is here: http://codepen.io/pietrofxq/pen/BCaoD
Does someone knows the problem?
You are using a schemaless URL to access the CDN.
If you are trying to open the page from your disk (schema being file://) then it will fail is it will use the same schema to access the CDN
Try with a full URL http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css
If you are calling it from a server, then make sure that the font files are delivered correctly. Some servers need to be told to allow the font files to be accessed.
(use the console to see if they load ok)