Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
- Building a Navbar 9:17
- Using Jumbotron to Showcase Key Content 2:48
- Buttons and Button Groups 5:22
- Inline Navs and Dropdown Buttons 5:09
- Displaying Content with Cards 7:32
- Building the Schedule with a List Group 6:26
- Displaying a Modal Window 5:02
- Using ScrollSpy to Highlight Nav Links 4:22
- Bootstrap Components Review 6 questions

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
List groups are flexible UI components for displaying both simple and complex lists of elements. You can convert a simple HTML list into something more visually interesting.
Topics snippet
<div class="list-group">
<a href="#" class="list-group-item list-group-item-action"><strong>MongoDB</strong>: NoSQL database</a>
<a href="#" class="list-group-item list-group-item-action"><strong>Express</strong>: Framework for Node</a>
<a href="#" class="list-group-item list-group-item-action"><strong>React</strong>: JavaScript library</a>
<a href="#" class="list-group-item list-group-item-action"><strong>Node.js</strong>: JavaScript environment</a>
<a href="#" class="list-group-item list-group-item-action"><strong>ES2015</strong>: Latest version of JavaScript</a>
<a href="#" class="list-group-item list-group-item-action"><strong>Babel</strong>: JavaScript compiler</a>
</div>
Schedule snippet
<!-- schedule -->
<ul class="list-group">
<li class="list-group-item">
<div class="d-flex justify-content-between">
<h5 class="mb-1">Keynote: Internet of Things</h5>
<span class="badge badge-pill badge-info p-2">9:00am</span>
</div>
<p class="mb-1">NodeStradamus</p>
</li>
<li class="list-group-item">
<div class="d-flex justify-content-between">
<h5 class="mb-1">React Basics</h5>
<span class="badge badge-pill badge-info p-2">10:00am</span>
</div>
<p class="mb-1">Vivianne McVue</p>
</li>
<li class="list-group-item">
<div class="d-flex justify-content-between">
<h5 class="mb-1">Hey, Mongo!</h5>
<span class="badge badge-pill badge-info p-2">11:00am</span>
</div>
<p class="mb-1">Jay Query</p>
</li>
<li class="list-group-item list-group-item-success">
<div class="d-flex justify-content-between">
<h5 class="mb-1">Lunch</h5>
<span class="badge badge-pill badge-info p-2">12:00pm</span>
</div>
<p class="mb-1">Free pizza for everyone!</p>
</li>
<li class="list-group-item">
<div class="d-flex justify-content-between">
<h5 class="mb-1">Introducing ES2015</h5>
<span class="badge badge-pill badge-info p-2">1:00pm</span>
</div>
<p class="mb-1">Ecma Scriptnstuff</p>
</li>
<li class="list-group-item">
<div class="d-flex justify-content-between">
<h5 class="mb-1">Getting Started With Redux</h5>
<span class="badge badge-pill badge-info p-2">2:00pm</span>
</div>
<p class="mb-1">Robbie Redux</p>
</li>
<li class="list-group-item">
<div class="d-flex justify-content-between">
<h5 class="mb-1">What's Babel?</h5>
<span class="badge badge-pill badge-info p-2">3:00pm</span>
</div>
<p class="mb-1">Json Babel</p>
</li>
</ul><!-- /schedule -->
Resources
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
Matthew Hosking
17,404 Points2 Answers
-
William Ray Noble
22,190 Points2 Answers
-
Heath Bolton
11,158 Points0 Answers
-
Justin Rose
12,842 Points1 Answer
-
Banjo Quint
1,452 Points1 Answer
-
Ryan Pierson
14,365 Points1 Answer
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up