With the following linkage to CSS/ JS, I'm able to successfully pick every CSS except the Glyphicons.
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="../bootstrap-3.3.5-dist/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="../bootstrap-3.3.5-dist/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="../bootstrap-3.3.5-dist/bootstrap.min.js"></script>
The project folder structure:
-- bootstrap-3.3.5-dist
-- myProjectFolder -- index.html
-- aboutUs.html
-- ...html
-- ...html
What I get instead:
It, however, all works perfectly after moving the HTML file to the the root, so that I have the HTML and bootstrap on the project root. The linkage changes to:
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="bootstrap-3.3.5-dist/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href=".bootstrap-3.3.5-dist/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="bootstrap-3.3.5-dist/js/bootstrap.min.js"></script>
The project folder structure now changes to:
-- bootstrap-3.3.5-dist
-- index.html
-- aboutUs.html
-- ...html
-- ...html
Why is this so, and is there a way to make it all work without moving the HTML file to the root?