Creating Full Page Width Jumbotron - HTML CSS Bootstrap

HTML CSS examples for Bootstrap:Form Control

Description

Creating Full Page Width Jumbotron

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Example of Bootstrap 3 Full Width Jumbotron</title>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
 </head><!--  ww  w. j a va2  s . c o m-->
 <body>
  <div class="jumbotron">
   <div class="container">
    <h1>Learn to Create Websites</h1>
    <p>This is a test. This is a test. This is a test.
This is a test. This is a test. This is a test.
This is a test. This is a test. This is a test.
This is a test. This is a test. This is a test.
This is a test. This is a test. This is a test.
This is a test. This is a test. This is a test.
This is a test. This is a test. This is a test.
This is a test. This is a test. This is a test.
This is a test. This is a test. This is a test.</p>
    <p><a href="http://java2s.com" target="_blank" class="btn btn-primary btn-lg">Get started today</a></p>
   </div>
  </div>
 </body>
</html>

Related Tutorials