Hello folks! welcome back to a new edition of our tutorial on Bootstrap. In this tutorial guide, we are going to be discussing about Bootstrap Jumbotron.
This component can optionally increase the size of headings and add a lot of margin for landing page content. To use Jumbotron -
This component can optionally increase the size of headings and add a lot of margin for landing page content. To use Jumbotron -
- Create a container <div> with the class of .jumbotron.
- In addition to a larger <h1>, the font-weight is reduced to 200px.
Example
Following example demonstrates this -
<div class = "container"> <div class = "jumbotron"> <h1>Welcome to landing page!</h1> <p>This is an example for jumbotron.</p> <p> <a class = "btn btn-primary btn-lg" role = "button">Learn more</a> </p> </div> </div>
Output
When the above example is executed, it will produce the following result -
READ: Bootstrap | Badges
To get a jumbotron of full width and without rounded corners then use .jumbotron class outside all .container classes, instead add a .container class within.
Example
Following example demonstrates this -
<div class = "jumbotron"> <div class = "container"> <h1>Welcome to landing page!</h1> <p>This is an example for jumbotron.</p> <p> <a class = "btn btn-primary btn-lg" role = "button">Learn more</a> </p> </div> </div>
Output
When the above example is executed, it will produce the following result -
READ: Bootstrap | Pagination
Alright guys! This is where we are going to be rounding up for this tutorial. In our next tutorial guide, we are going to be studying about the Bootstrap Page Header.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.