Locked lesson.
About this lesson
Quick reference
Setting Up Bootstrap
Installing Bootstrap is a two-step process.
When to use
Use these steps anytime you want to install Bootstrap.
Instructions
To Install Bootstrap, go to GetBootstrap.com and click on the "Getting Started" link, and then the "Download Bootstrap" link.
Download the zip file to your computer, and unzip it "extract all files".
Once unzipped, drag the "css", "fonts", and "js" folders into your C9 development environment.
Once uploaded, you need to reference the CSS file and Javascript in your web page.
The css reference goes in your <head> and </head> tag:
<link href="css/bootstrap.min.css" rel="stylesheet">
The Javascript reference goes above your </body> tag:
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="js/bootstrap.min.js"></script>
Hints & tips
- Get the Bootstrap files at GetBootstrap.com
Lesson notes are only available for subscribers.