Bootstrap Jumbotron

 

Jumbotron provides a big box which provides the extra attention to the content written under it, because it enlarge the content size written under it.

 
 
 
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Bootstrap jumbotron Example</title> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script> <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <div class="jumbotron"> <h1>Bootstrap jumbotron</h1> <p>Bootstrap is the most popular HTML, CSS, and JS framework for developing web.</p> </div> </div> </body> </html>
Output