I want to use Bootstrap via including CDN. According to the documentation, there are three:
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
I know that I should include CSS (the 1st) and JavaScript (the 3rd). But do I also need to include JQuery CDN? Or it is already included in Bootstrap CDN?
And what is the optional theme CDN (the 2nd)? Is it necessary to include it if I what to use Bootstrap?
**EDIT:**
Now since I know that I should include JQuery separately, the main problem is:
And what is the optional theme CDN (the 2nd)? Is it necessary to include it if I what to use Bootstrap?
Thanks a lot.