Bootstrap Jumbotron
The Bootstrap jumbotron a lightweight, flexible  component provides an excellent way to showcase the key content or information on a your website. 
Jumbotron Inside Container
<!DOCTYPE html>
<html>
<head>
   <title>Bootstrap Jumbotron Inside Container</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
   <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
   <script type="text/javascript" src="js/jquery.min.js"></script>
   <script type="text/javascript" src="js/bootstrap.min.js"></script>
</head>
<body>
 
<div class="container">
 
<!-- Strat Jumbotron --> 
    <div class="jumbotron">
      <h1>Welcome to Free time Learning!</h1>
      <p>Free Time Learning (FTL) website 
      <a href="http://www.freetimelearning.com" target="_blank">
      www.freetimelearning.com</a>  main purpose is free education, 
      free tutorials, free examples, free student projcts. </p>
      
      <p><a class="btn btn-primary btn-lg" role="button">Read more</a></p>
   </div>
   <!-- Strat Jumbotron --> 
   
</div>
 
</body>
</html>
Output :
Welcome to Free time Learning!

Free Time Learning (FTL) website www.freetimelearning.com main purpose is free education, free tutorials, free examples, free student projcts.

Read more

Jumbotron Outsite Container
<!DOCTYPE html>
<html>
<head>
   <title>Bootstrap Jumbotron Outsite Container</title>
   <meta name="viewport" content="width=device-width,initial-scale=1">
   <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
   <script type="text/javascript" src="js/jquery.min.js"></script>
   <script type="text/javascript" src="js/bootstrap.min.js"></script>
</head>
<body>
 
<!-- Strat Jumbotron  --> 
<div class="jumbotron">
 
   <div class="container">
      <h1>Welcome to Free time Learning!</h1>
      <p>Free Time Learning (FTL) website 
		<a href="http://www.freetimelearning.com" target="_blank">
		www.freetimelearning.com</a>  main purpose is free education, 
        free tutorials, free examples, free student projcts. </p>
      
      <p><a class="btn btn-primary btn-lg" role="button">Read more</a></p>
   </div>
   
</div>
<!-- End Jumbotron --> 
 
</body>
</html>
Output :
Welcome to Free time Learning!

Free Time Learning (FTL) website www.freetimelearning.com main purpose is free education, free tutorials, free examples, free student projcts.

Read more