Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap Alert with Additional Content</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"> <link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script> <style> /* Custom style to set icon size */ .alert i[class^="bi-"]{ font-size: 1.5rem; line-height: 1; } </style> </head> <body> <div class="m-4"> <div class="alert alert-danger alert-dismissible fade show"> <h4 class="alert-heading"><i class="bi-exclamation-octagon-fill"></i> Oops! Something went wrong.</h4> <p>Please enter a valid value in all the required fields before proceeding. If you need any help just place the mouse pointer above info icon next to the form field.</p> <hr> <p class="mb-0">Once you have filled all the details, click on the 'Next' button to continue.</p> <button type="button" class="btn-close" data-bs-dismiss="alert"></button> </div> </div> </body> </html>