I have deployed an app on heroku but the css is not working.
I am using the w3.css framework and I am importing it like this:
<link rel="stylesheet" href="//www.w3schools.com/lib/w3.css">
The error I am getting is:
GET https://www.w3schools.com/lib/w3.css net::ERR_INSECURE_RESPONSE
I am pretty sure that it is related to the certificate of the site.
But even when I manually accept the "invalid" certificate in the site, I get a 404 error.
Also, from what I see, w3.css only offers its CDN through http:
http://www.w3schools.com/lib/w3.css
not https:
www.w3schools.com/lib/w3.css
So, I just wanted to confirm that this is actually the case and that it is not my fault (not knowing how to load sth over https!)
Finally, it's not a Chrome error (from what I've read around in SO). Firefox doesn't work either.
UPDATE
Just to inform that, as expected, the error was resolved when I downloaded the w3css framework and linked to it locally.