Within the <head>
section of my index.html
, I have successfully utilized these links on localhost:
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Noto+Sans:400,700' rel='stylesheet' type='text/css'>
However, when viewing the GitHub page, I encountered errors for all these links in the console and the content was not displayed:
Mixed Content: The page at 'https://mypage.net/' was loaded over HTTPS, but requested an insecure stylesheet 'http://fonts.googleapis.com/css?family=Noto+Sans:400,700'. This request has been blocked; the content must be served over HTTPS.
If I instead use:
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-xs-12 text-center">
<p class="social">
<a target="_blank" href="https://www.youtube.com/channel/MyChannelID?view_as=subscriber">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-youtube fa-stack-1x fa-inverse"></i>
</span>
</a>
<a target="_blank" href="https://github.com/myGitHub">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
<a target="_blank" href="https://www.facebook.com/myFacebook">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
</p>
</div>
</div>
</div>
</footer>