Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Placing HTML inside Bootstrap 4 Popovers</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script> <style> .bs-example{ margin: 100px; } /* Custom styles for popover */ .custom-title{ margin: 0; } </style> <script> $(document).ready(function(){ $("#myPopover").popover({ title: '<h3 class="custom-title"><i class="fa fa-info-circle"></i> Popover Info</h3>', content: '<p>This is a <em>simple example</em> demonstrating how to insert HTML code inside <strong>Bootstrap popover</strong>.</p>', html: true }); }); </script> </head> <body> <div class="bs-example"> <button type="button" class="btn btn-primary btn-lg" id="myPopover" data-toggle="popover">HTML Inside Popover</button> <p class="mt-2"><strong>Note:</strong> Click on the buttons to show/hide the popover.</p> </div> </body> </html>