Search
 
SCRIPT & CODE EXAMPLE
 

HTML

bootstrap jumbotron

<div class="jumbotron">
  <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-4">
  <p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
  <p class="lead">
    <a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a>
  </p>
</div>
Comment

bootstrap 5 jumbotron

<div class="bg-light p-5 rounded-lg m-3">
  <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-4">
  <p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
  <a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a>
</div>
Comment

Jumbotron in boostrap 5

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">

<h5>In Bootstrap v4.x</h5>

<div class="jumbotron m-3">
  <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-4">
  <p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
  <a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a>
</div>

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">

<h5>In Bootstrap v5.x</h5>

<div class="bg-light p-5 rounded-lg m-3">
  <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-4">
  <p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
  <a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a>
</div>
 Run code snippet
Comment

what is jumbotron in bootstrap

A jumbotron indicates a big box for calling extra attention to some special content or information.

A jumbotron is displayed as a grey box with rounded corners. It also enlarges the font sizes of the text inside it.

Tip: Inside a jumbotron you can put nearly any valid HTML, including other Bootstrap elements/classes.

Use a <div> element with class .jumbotron to create a jumbotron
Comment

Jumbotron in boostrap 5

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: .3rem;
}
Comment

PREVIOUS NEXT
Code Example
Html :: mysql dependency 
Html :: td colspan all 
Html :: Vertically align text next to an image? 
Html :: html open email program 
Html :: bootstrap checkbox inline 
Html :: how do i link two pages in html 
Html :: how to automatic get boilerplate code for html in vc code 
Html :: two divs in the same place 
Html :: how to change the height of an image in html 
Html :: flutter build web with html render 
Html :: display success message after form submit in php 
Html :: html add image from folder 
Html :: how to add an html anchor 
Html :: html nav example 
Html :: git pull one file 
Html :: tailwind flex shrink 
Html :: set file allow html 
Html :: change font size of h1 in html 
Html :: import google maps libraries html 
Html :: how to make text uppercase html 
Html :: input type=number 01 
Html :: button not clickable html 
Html :: html iframe connection refused 
Html :: allow transparency wpf window 
Html :: html time input with second 
Html :: Scrollable Text in HTML 
Html :: dark blue html code 
Html :: how to call a script from another script in javascript 
Html :: angular material disable radio button 
Html :: laravel nginx config 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =