
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Image Thumbnail with Bootstrap
To add a thumbnail to the image, use the .img-thumbnail Bootstrap class.
You can try to run the following code to add a thumbnail to images
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Images</title> <link href="/https/www.tutorialspoint.com/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <p>Styling images with Bootstrap</p> <h1>Original Image</h1> <img src = "https://www.tutorialspoint.com/videotutorials/images/tutorial_library_home.jpg"> <h1>Thumbnail Image</h1> <img src = "https://www.tutorialspoint.com/videotutorials/images/tutorial_library_home.jpg" class = "img-thumbnail"> </body> </html>
Advertisements