- 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
Add HTML paragraphs into Bootstrap thumbnails
With Bootstrap, you can easily add paragraphs to thumbnails.
You can try to run the following code to add HTML paragraphs −
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 = "row"> <div class = "col-sm-6 col-md-3"> <div class = "thumbnail"> <img src = "https://www.tutorialspoint.com/sap_payroll/images/sap-payroll-mini-logo.jpg" alt = "SAP"> </div> <div class = "caption"> <h3>Thumbnail label</h3> <p>This is demo paragraph! This is demo paragraph! This is demo paragraph! This is demo paragraph! This is demo paragraph! This is demo paragraph!</p> <p>This is demo paragraph! This is demo paragraph! This is demo paragraph! This is demo paragraph! This is demo paragraph!</p> </div> </div> </div> </body> </html>
- Related Articles
- Add HTML headings into Bootstrap thumbnails
- HTML Paragraphs
- How to add thumbnails to YouTube videos
- How to create Paragraphs in HTML Page?
- Add HTML Content to Bootstrap List Group
- How to Add Custom Thumbnails to a YouTube Video?
- How to add CSS rules into an HTML document
- How to Add a Custom Thumbnails to a YouTube Video using YouTube mobile App?
- How can I add an attribute into specific HTML tags in jQuery?
- Add sizes for Bootstrap Buttons
- Add buttons in Bootstrap Navbar
- Add Red label with Bootstrap
- Add style to images with Bootstrap
- Add responsive features to Bootstrap navbar
- Add information with Bootstrap 4 card

Advertisements