you can setup your file/folder hierarchy any way you'd like. To change it,
simply put in the folders you want to use, add the files you want inside
them and then link to them in the head (and maybe footer) in your .html doc.
ex:
my file structure is usually something like:
- <site root>
- index.html
- css (folder)
- bootstrap.min.css
- ......
- js (folder)
- bootstrap.min.js
- .......
- img (folder)
then in my index.html i change the links to my stylesheets to be
<head>
....
<link rel="stylesheet" href="css/bootstrap.min.css" >
<script type="text/javascript" src="js/bootstrap.min.js">
....
</head>
Take note that you may be calling javascript files at the end of the .html
doc, and that's totally legit (and probably prefered) so if that's the
case, don't move the calls to the head if you don't have to, just change
the links to the files (as shown above in red)
--
You received this message because you are subscribed to the Google Groups
"twitter-bootstrap" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.