Bootstrap3 Tutorial

Bootstrap Intro

Download BS3

Bootstrap Layout

BS3 Grid System

BS3 Typography

Bootstrap3 Table

Bootstrap3 Images

BS3 Jumbotron

Bootstrap3 Well

Bootstrap3 Alert

Bootstrap3 Button

BS3 Button Group

BS3 Glyphicons

Bootstrap3 Badges

BS3 Progress Bar

BS3 Pagination

Bootstrap3 Pager

Bootstrap3 Panel

Bootstrap3 Collapse

BS3 Menu, Tabs, Pills

BS3 Navigation Bar

Bootstrap3 Carousel

Bootstrap3 Modal

Bootstrap3 Tooltip

Bootstrap3 Scrollspy

Bootstrap3 Affix

Bootstrap3 Templates

Bootstrap Jumbotron

Bootstrap Jumbotron creates a big box which displayed as a grey box with rounded courners. It also enlarges the font sizes of the text inside it. Bootstrap Jumbotron is usally used for Page Header. To create a jumbotron heading use the ".jumbotron" class inside a div element.

Example 1: Jumbotron Heading Inside Container

<div class="container">
  <div class="jumbotron">
    <h1>Website Heading</h1> 
    <p>Some text about website.</p> 
  </div>
  <p>This is some page text.</p> 
  <p>This is another page text.</p> 
</div>

Example 2: Jumbotron Heading Outside Container

<div class="jumbotron">
  <h1>Website Tutorial</h1> 
  <p>Some text about website.</p> 
</div>
<div class="container">
  <p> This is some page text. </p> 
  <p> This is another page text. </p> 
</div>