Increase the font size of a paragraph with Bootstrap


Use the .lead class in Bootstrap to increase the font size of a paragraph.

You can try to run the following code to implement lead class −

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class = "container">
         <h2>Football</h2>
         <h3>FIFA</h3>
         <p>The 2018 FIFA World Cup is the 21st FIFA World Cup.</p>
         <p class = "lead">FIFA, 2018 is going on in Russia.</p>
      </div>
   </body>
</html>

Updated on: 12-Jun-2020

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements