A Jumbotron in Bootstrap Web UI framework is a huge box-shaped component that is displayed on the page to draw user attention to some important content.
-According to Bootstrap Jumbotron is a lightweight, flexible component that can optionally extend the entire viewport to showcase key content on your site.The default color of Jumbotron is gray with rounded corners. A jumbotron is the CSS class for creating Jumbotron, It contains an H1 tag along with a p tag to display some text inside it.
Code Snippet: jumbotron-example.html<!DOCTYPE html>
<head>
<title>What is Bootstrap Jumbotron?</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>What is Bootstrap Jumbotron?</h1>
<p>A jumbotron is a huge box that is displayed on the page to draw attention of some important content.</p>
</div>
</div>
</body>
</html>
More Posts related to Bootstrap,
- [Solved] Bootstrap tooltip not working
- Create Bootstrap carousel slider with Text
- Bootstrap tooltip not working
- How to disable button in Bootstrap
- Vertical align two div's in Bootstrap [HTML CSS]
- Bootstrap Button Colors Classes
- How to Change Bootstrap Carousel Slide Speed
- Right Align Text in Bootstrap framework
- How to add hint text in bootstrap input text field and text area
- Simple Login Page using Bootstrap
- Make Bootstrap Button look like a link
- Align left align text in Bootstrap
- Bootstrap Nav Menu Dropdown on hover
- Rounded Images in Bootstrap framework
- What is Bootstrap Jumbotron and how to use it
More Posts:
- How to install iTerm2 Mac Terminal Alternative - MacOS
- Setting JAVA_HOME in macOS Big Sur - MacOS
- Fixing Android unknown error 961 while downloading app - Android
- Python: Pandas Rename Series Example - Python
- Use Google Chrome Canvas to create drawings - Chrome
- PowerShell iterate and get all SharePoint sites and sub sites - SharePoint
- How to check if a variable is set in Bash Script or Not - Bash
- How to Show Battery Percentage inside iPhone 12-14 Battery Indicator? - iOS