Create a light-blue alert box that indicates some information with Bootstrap



Use the .alert-info class to create a light-blue alert box indicating some information.

You can try to run the following code to implement .alert-info class in Bootstrap −

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link rel = "stylesheet" href = "https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
      <script src = "https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class = "container">
         <div class = "alert alert-info">
            <p>Information!</p>
            <p>Add information here...</p>
         </div>
      </div>
   </body>
</html>
Updated on: 2020-06-12T20:20:53+05:30

282 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements