Drift BootStrap 4, HTML, jQuery
  • Overview
  • Installation and Setup
    • Setup
    • Folders and Files Structure
  • Stylesheets
    • Overview
    • Sass Variables
    • Layouts & Theme
    • Fonts
    • Colors
    • Margin & Paddings
    • Theme Customization
    • RTL Version
  • Components
    • Alerts
    • Badges
    • Breadcrumbs
    • Buttons
    • Button Group
    • Cards
    • Card Group
    • Collapse
    • Dropdowns
    • Input Group
    • Jumbotron
    • List Group
    • Navbar
    • Navs & Tabs
    • Pagination
    • Progress Bar
    • Scrollspy
    • Typography
  • Classic Version
    • Setup
    • Folders and Files Structure
    • Theme Customizaton
    • RTL Version
Powered by GitBook
On this page

Was this helpful?

  1. Components

Jumbotron

PreviousInput GroupNextList Group

Last updated 5 years ago

Was this helpful?

Jumbotron

<!-- Jumbotron -->
<div class="jumbotron mb-0">
    <h1 class="display-4">Hello, world!</h1>
    <p class="lead">This is a simple hero unit, a simple jumbotron-style component
        for calling extra
        attention to featured content or information.</p>
    <hr class="my-3">
    <p class="mb-4">It uses utility classes for typography and spacing to space
        content out within the
        larger container.</p>
    <a class="btn btn-primary" href="javascript:void(0)" role="button">Learn
        more</a>
</div>
<!-- /jumbotron -->
<!-- Jumbotron -->
<div class="jumbotron jumbotron-fluid mb-0">
    <div class="container">
        <h1 class="display-4">Fluid jumbotron</h1>
        <p class="lead">This is a modified jumbotron that occupies the entire
            horizontal space of its
            parent.</p>
    </div>
</div>
<!-- /jumbotron -->