Bootstrap Increase the Font Size of a Paragraph




Bootstrap Increase the Font Size of a Paragraph

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href="css/bootstrap.min.css">
      <script src="scripts/jquery.min.js"></script>
      <script src="js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class="container">
         <h2>Football</h2>
         <h3>Circket</h3>
         <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>
         <p class="lead">Lorem Ipsum is simply dummy text of the printing
         and typesetting industry</p>
      </div>
   </body>
</html>

Output