Book Image

Learning Bootstrap

Book Image

Learning Bootstrap

Overview of this book

If you want to learn to build enterprise-level websites efficiently with Bootstrap, this book is for you. You must have a basic and fundamental understanding of HTML, CSS, and JavaScript; however, there is no need to have prior Bootstrap experience.
Table of Contents (10 chapters)
Free Chapter
1
1. Getting Started with Bootstrap
9
Index

Streamlining your projects with official plugins


Since most of the plugins have a dependency on jQuery, you have to include the CDN link for jQuery or include the jQuery file in your code by downloading the file from the official website. In this chapter, we're using the CDN link for all the examples including the Bootstrap JavaScript and theme file.

The <head> section for all the coding examples will include the following links:

<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script  src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>

Now, let's take a look at the popular plugins, which you can incorporate in your code to build aesthetic websites.

Tooltips

Tooltips are used to...