FCC - Bootstrap notes
1. Wrap all your html elements in a <div> and then add em to a class called "container-fluid"
2. to make images responsive, add the image to the "img-responsive" class.
3. "text-center" to do exactly what the name suggests. Also, see "text-primary"
4. "btn" class and afterwards, "btn-block", "btn-primary", "btn-info", "btn-danger", "btn-default"
5. col-md-(number of columns the element will occupy) 6. col-xs-(number of columns the element will occupy)
7.example of using the 12 column responsive grid
<div class = "row"> <div class="col-xs-4"> ..add other elements here </div>
<div class="col-xs-4"> ..add other elements here </div>
<div class="col-xs-4"> ..add other elements here </div> </div>
8.for font awesome: <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"/>
9.Bootstrap has a class called well that can create a visual sense of depth for your columns. Note that a div with the well class should go inside the div with the col-xs-6 class.












