Bootstrap alert class


Add a basic alert by creating a wrapper <div> and adding a class of .alert and one of the four contextual classes, for example, .alert-success, .alert-info, .alert-warning, .alert-danger.

You can try to run the following code to create an alert class −

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class = "alert alert-success">
         This is Success!
      </div>
      <div class = "alert alert-info">
         This is Info!
      </div>
      <div class = "alert alert-warning">
         This is Warning!
      </div>
      <div class = "alert alert-danger">
         This is Error!
      </div>
   </body>
</html>

Updated on: 12-Jun-2020

131 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements