- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Create a heading inside the media object with Bootstrap
To create a heading inside the media object, use the .media-heading class:
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link rel = "stylesheet" href = "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src = "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body> <div class = "container"> <h2>Google Tag Manager Tutorial</h2> <div class = "media"> <div class="media-left"> <img src = "https://www.tutorialspoint.com/latest/Google-Tag-Manager.png" class="media-object" style="width:60px"> </div> <div class = "media-body"> <h4 class = "media-heading">Definition</h4> <p>Google Tag Manager (GTM) is a free tool that makes it easy for marketers to add and update website tags.</p> </div> </div> </div> </body> </html>
- Related Articles
- Create a list group heading in Bootstrap
- Set Bootstrap Panel with Heading
- Create a Bootstrap Media List
- Media object in Bootstrap
- Make an element look like a heading with Bootstrap
- Bootstrap panel-heading class
- Add a heading container to Bootstrap panel
- Nested media lists with Bootstrap
- Align media objects with Bootstrap
- Create a media resources for media elements, defined inside video or audio elements in HTML5.
- HTML DOM Heading object
- Add a title to any heading element in the Bootstrap 4 card
- Create a Button Group with Bootstrap
- Create a progress bar with Bootstrap
- Create a tabbed menu with Bootstrap

Advertisements