How to add jumbotron (a big box) with large text size in Bootstrap

1 Answer

0 votes
<!DOCTYPE html>
<html lang="en">
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet"
        href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
  
<body>
  
<div class="container">
  <div class="jumbotron">
    <h1>Bootstrap (front-end framework)</h1>      
    <p>A free open-source framework for designing websites and web applications</p>
  </div>
  <p>Bootstrap contains HTML and CSS design templates for typography, forms, buttons...</p>      
</div>
  
</body>
</html>

 



answered Jul 9, 2017 by avibootz

Related questions

...