Bootstrap Alert
If we want to give any alert message to our user , so from bootstrap it is very easy to create alert messages . There are some predefined class. And we use .alert class for it
Let’s understand them by this program :-
<!DOCTYPE html>
<html lang="en">
<head>
<title>bootstrap 5 Example</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container-fluid">
<h2> Alerts</h2>
<p> Alerts are created with the .alert class, followed by a contextual color classes:</p>
<div class="alert alert-success">
<strong> Success!</strong> This alert box could indicate a successful or positive action.
</div>
<div class="alert alert-info">
<strong> Info</strong> This alert box could indicate a neutral informative change or action.
</div>
<div class="alert alert-warning">
<strong> Warning!</strong> This alert box could indicate a warning that might need attention.
</div>
<div class="alert alert-danger">
<strong> Danger!</strong> This alert box could indicate a dangerous negative action.
</div>
<div class="alert alert-primary">
<strong> Primary!</strong> Indicates an important action.
</div>
<div class="alert alert-secondary">
<strong> Secondary!</strong> Indicates a slightly less important action.
</div>
<div class="alert alert-dark">
<strong> Dark!</strong> Dark grey alert.
</div>
<div class="alert alert-light">
<strong> Light!</strong> Light grey alert.
</div>
</div>
</body>
</html>
Output of this Program
bootstrap 5 Example
Alerts
Alerts are created with the .alert class, followed by a contextual color classes:
Success! This alert box could indicate a successful or positive action.
Info This alert box could indicate a neutral informative change or action.
Warning! This alert box could indicate a warning that might need attention.
Danger! This alert box could indicate a dangerous negative action.
Primary! Indicates an important action.
Secondary! Indicates a slightly less important action.
Dark! Dark grey alert.
Light! Light grey alert.
So here we get our alert messages.
Alert Links
<!DOCTYPE html>
<html lang="en">
<head>
<title>bootstrap 5 Example</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container-fluid">
<h2> Alerts</h2>
<p> Alerts are created with the .alert class, followed by a contextual color classes:</p>
<div class="alert alert-success">
<strong> Success!</strong> This alert box could indicate a successful or <a href="#" class="alert-link">positive action.</a>
</div>
<div class="alert alert-info">
<strong> Info</strong> This alert box could indicate a neutral informative <a href="#" class="alert-link">change or action.</a>
</div>
<div class="alert alert-warning">
<strong> Warning!</strong> This alert box could indicate a warning that might <a href="#" class="alert-link">need attention.</a>
</div>
<div class="alert alert-danger">
<strong> Danger!</strong> This alert box could indicate a dangerous <a href="#" class="alert-link">negative action.</a>
</div>
<div class="alert alert-primary">
<strong> Primary!</strong> Indicates an <a href="#" class="alert-link">important action.</a>
</div>
<div class="alert alert-secondary">
<strong> Secondary!</strong> Indicates a slightly less <a href="#" class="alert-link">important action.</a>
</div>
<div class="alert alert-dark">
<strong> Dark!</strong> <a href="#" class="alert-link">Dark grey alert.</a>
</div>
<div class="alert alert-light">
<strong> Light!</strong> <a href="#" class="alert-link">Light grey alert.</a>
</div>
</div>
</div>
</body>
</html>
Output of this Program
bootstrap 5 Example
Alerts
Alerts are created with the .alert class, followed by a contextual color classes:
Warning! This alert box could indicate a warning that might
need attention.
Bootstrap Example
Alerts
The button with class="btn-close" and data-bs-dismiss="alert" is used to close the alert box.
The alert-dismissible class aligns the button to the right.
Success! This alert box could indicate a successful or positive action.
Info! This alert box could indicate a neutral informative change or action.
Warning! This alert box could indicate a warning that might need attention.
Danger! This alert box could indicate a dangerous or potentially negative action.
Primary! Indicates an important action.
Secondary! Indicates a slightly less important action.
Dark! Dark grey alert.
Light! Light grey alert.