atom-bootstrap3 icon indicating copy to clipboard operation
atom-bootstrap3 copied to clipboard

atom-bootstrap3 cdn links included not working

Open ahjashish opened this issue 11 years ago • 4 comments

<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>

Both the css and the script links give error in browser console.

Failed to load resource: net::ERR_FILE_NOT_FOUND

ahjashish avatar Jul 28 '14 02:07 ahjashish

replace http://

c0b41 avatar Aug 29 '14 14:08 c0b41

Your links are missing the http:

http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js

shantam3 avatar Feb 25 '15 17:02 shantam3

// allows the browser to use the same protocol that was used when accessing the page. so if you access the page using http then the // will be accessed also using http//. useful for having content that can be either http or https. The problem you are having is more than likely due to trying to access the page locally. The protocol being used is file so it attempts to access file// for the cdn.

bhhaskin avatar Mar 03 '15 21:03 bhhaskin

it doesn't work i have tried multiple times

BRIGHTON-ASUMANI avatar Mar 15 '19 02:03 BRIGHTON-ASUMANI