About 4 hours 45 minutes
- 15 minutes for video walkthrough of slides
- 30 minutes for Independent Practice
- 4 hours for Independent Practice & Challenge
Bootstrap is a popular and easy-to-use front-end framework first released by Twitter. Utilizing Bootstrap significantly reduces the amount of time spent styling your webpages, especially for mobile-development.
Example of working websites that have used bootstrap
Below are the examples of websites that have used bootstrap:
Participants will be able to:
- Create a responsive layout using Bootstrap
- Design a website using the 12-column Grid system
- Inspect an HTML's box model using Chrome's developer tools
- How to link to Bootstrap from a CDN within your HTML head tags
- How Bootstrap's 12-column grid system works
- Containers
- Rows & columns
- Specifying screen widths
- How to quickly incorporate a Bootstrap element from the official Bootstrap docs
- Things you can build using Bootstrap
- Interactive Bootstrap features
- Existing Bootstrap templates you can already use!
- Quick video walkthrough
Bootstrap (Video walkthrough of slides)
- Bootstrap v4 is still in beta, so stick to version 3.3.7 for now.
- There is no need to download the Bootstrap files. Simply use a CDN link as shown in the slides and the Bootstrap docs.
- There is a
bootstrap.css
and abootstrap.js
. Thebootstrap.css
file is what most people refer to when they talk about Bootstrap. Thebootstrap.js
file is only necessary when you want to make interactive components like drop-down menus, modals, and the like. In that case, you'll need to usebootstrap.js
in addition tobootstrap.css
. - The
bootstrap.js
file needs jQuery in order to work. Make sure you've linked to the jQuery CDN above your link to thebootstrap.js
CDN.
Activity 1 - What Can Be Done with Bootstrap?
This is an independent activity and pairs will not be assigned.
Spend 20 minutes exploring this link given in the "Supplemental Materials" section above: Things you can build using Bootstrap. Make a list that includes some of the most useful components, your favorite components, or components you think would be really neat to add to a project.
Spend 10 minutes exploring this link given in the "Supplemental Materials" section above: Interactive Bootstrap features. Add some of these features to the list you created in the first portion.
Activity 2 - Your First Bootstrap Webpage!
Techtonica staff will assign pairs.
-
Using your Terminal, navigate to your Desktop.
-
Create a new directory called
vegetables-webpage
. -
Navigate to
vegetables-webpage
. Open the whole directory withcode .
. -
Create a file called
vegetables.html
. It should automatically appear in the left sidebar in VS Code as an editable file. -
Open this lab exercise in a new tab by pressing
<CONTROL>
and clicking on the link. A selection box will appear. Click on "Open in new tab". -
Open the link provided in the first bullet point in a new tab as well. Using the Quick Source Viewer Chrome extension you installed in the "Chrome Developer Tools" lesson, view the HTML and talk through the code with your pair partner. Can you explain what each section accomplishes? Once you feel satisfied that you understand what the code is doing, move on to the next step.
-
Copy the HTML you accessed in the previous step into
vegetables.html
. Save the file. Close the Chrome tab that you opened in Step 6 (the one you used the Chrome Quick Source Viewer extension on). -
In a new tab, open
vegetables.html
in Chrome using one of the techniques you learned in the "HTML" lesson. It should look the same as the example you saw a moment ago. You'll refer back to this tab through this exercise as you add code and refresh this webpage. -
Continue on with the tutorial you opened in Step 5 and see how far you can get. You'll likely make small bursts of progress using trial and error. That's OK! Be patient with yourself. Remember to stick to the 20-minute rule before asking a peer or instructor for help. Before clicking "Show Solution" at the bottom of the tutorial, please give this exercise a good-faith effort.
-
Did you specify in
vegetables.html
column widths for various screen sizes? If you didn't, please do so now. -
Using online resources, add a Bootstrap modal window component to your Vegetables webpage. The modal window should display some content, and also open and close. Remember: which Bootstrap CDN link do you need to add before you can add interactive features?
Participants can refer to the list they made in Activity 1. Give them 10 minutes to make notes on how to specify column widths for different screen sizes, how to link using the CDN (and where the links go in the HTML file), and how divs, containers and rows relate to each other.