Book Image

Learning Bootstrap

Book Image

Learning Bootstrap

Overview of this book

Table of Contents (15 chapters)
Learning Bootstrap
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Free Chapter
1
Getting Started with Bootstrap
Index

Including Bootstrap in your HTML file


Download Bootstrap from the official website http://getbootstrap.com/ and include it in your HTML file with little or no customization.

Click on the Download Bootstrap button and the file will be downloaded in the ZIP format. The ZIP files contain the Bootstrap CSS, JavaScript, and font files as shown in the following directory structure:

bootstrap
|____css
| |____bootstrap.css
| |____bootstrap.min.css
| |____bootstrap.css.map
| |____bootstrap-theme.css
| |____bootstrap-theme.min.css
| |____bootstrap-theme.css.map
|____fonts
| |____glyphiconshalflings-regular.eot
| |____glyphiconshalflings-regular.svg
| |____glyphiconshalflings-regular.ttf
| |____glyphiconshalflings-regular.woff
|____js
| |____bootstrap.js
| |____bootstrap.min.js

You need to extract the Bootstrap .zip file and copy the contents to your project folder. The next step is to include the CSS and JavaScript files in your HTML file.

Let's take a look at how the file structure should be if you use...