- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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
<!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>
- Related Articles
- Increase or decrease the size of a font with CSS
- How to increase the font size of a Text widget?
- How to increase the font size of text in Arduino IDE?
- How to increase plt.title font size in Matplotlib?
- Display text inside an element in a smaller font size with Bootstrap
- Add some emphasis to a paragraph with Bootstrap
- Change the font size of a button with CSS
- How to increase the font size of the legend in my Seaborn plot using Matplotlib?
- Set the font size with CSS
- How to increase the X-axis labels font size using ggplot2 in R?
- Font size adjust of an element with CSS
- How can I change the font family and font size with jQuery?
- How to set the font size of text with JavaScript?
- Set Font Size with Pixels using CSS
- Set Font Size with em using CSS

Advertisements