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 :-
<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>
<p> Alerts are created with the .alert class, followed by a contextual color classes:</p>
<div class="alert alert-success alert-dismissible">
<button type="button" class="close" data-bs-dismiss="alert">×</button>
<strong> Success!</strong> This alert box could indicate a successful or positive action.
</div>
<div class="alert alert-info alert-dismissible">
<button type="button" class="close" data-bs-dismiss="alert">×</button>
<strong> Info</strong> This alert box could indicate a neutral informative change or action.
</div>
<div class="alert alert-warning alert-dismissible">
<button type="button" class="close" data-bs-dismiss="alert">×</button>
<strong> Warning!</strong> This alert box could indicate a warning that might need attention.
</div>
<div class="alert alert-danger alert-dismissible">
<button type="button" class="close" data-bs-dismiss="alert">×</button>
<strong> Danger!</strong> This alert box could indicate a dangerous negative action.
</div>
<div class="alert alert-primary alert-dismissible">
<button type="button" class="close" data-bs-dismiss="alert">×</button>
<strong> Primary!</strong> Indicates an important action.
</div>
<div class="alert alert-secondary alert-dismissible">
<button type="button" class="close" data-bs-dismiss="alert">×</button>
<strong> Secondary!</strong> Indicates a slightly less important action.
</div>