Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap Alerts with Icons</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.5em; line-height: 1; } </style> </head> <body> <div class="m-4"> <!-- Success Alert --> <div class="alert alert-success alert-dismissible d-flex align-items-center fade show"> <i class="bi-check-circle-fill"></i> <strong class="mx-2">Success!</strong> Your message has been sent successfully. <button type="button" class="btn-close" data-bs-dismiss="alert"></button> </div> <!-- Error Alert --> <div class="alert alert-danger alert-dismissible d-flex align-items-center fade show"> <i class="bi-exclamation-octagon-fill"></i> <strong class="mx-2">Error!</strong> A problem has been occurred while submitting your data. <button type="button" class="btn-close" data-bs-dismiss="alert"></button> </div> <!-- Warning Alert --> <div class="alert alert-warning alert-dismissible d-flex align-items-center fade show"> <i class="bi-exclamation-triangle-fill"></i> <strong class="mx-2">Warning!</strong> There was a problem with your network connection. <button type="button" class="btn-close" data-bs-dismiss="alert"></button> </div> <!-- Info Alert --> <div class="alert alert-info alert-dismissible d-flex align-items-center fade show"> <i class="bi-info-circle-fill"></i> <strong class="mx-2">Info!</strong> Please read the comments carefully. <button type="button" class="btn-close" data-bs-dismiss="alert"></button> </div> </div> </body> </html>