Where to Get Bootstrap
There are two ways to start using Bootstrap on your own web site.- Download Bootstrap from getbootstrap.com and include this in your website's local folder.
- Include Bootstrap from a CDN
Downloading Bootstrap
you can download Bootstrap yourself, just go to getbootstrap.com, and follow the instructions available there.Bootstrap CDN (Content Delivery Network)
If you do not want to download and use it directly then you can use CDN provided by MaxCDN. It provides both Bootstrap's CSS and JavaScript CDN link. JQuery can also be available in CDN, if you want to use it using CDN.
CDN link is here :-
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
CDN Insures availability and speed than local copy of library. So, it is a recommended way to use build-in libraries.
No comments :
Post a Comment