Docs -Alert Boxes

We have provided four styles of alert box

  • .alert .alert-success - alert success box color scheme
  • .alert .alert-info - alert info box color scheme
  • .alert .alert-warning - alert warning box color scheme
  • .alert .alert-danger - alert danger box color scheme
          
    <!-- alert success box -->
    
    <div class="alert alert-success">
    	<strong>Well done!</strong> You successfully read this important alert message.	    
    </div>
 			  
   	    
          
    <!-- alert info box -->
    
    <div class="alert alert-info">
    	<strong>Heads up!</strong> This alert needs your attention, but it's not super important. 	    
    </div>
 			  
   	    
          
    <!-- alert Warning box -->
    
    <div class="alert alert-warning">
    	<strong>Warning! </strong> Best check yo self, you're not looking too good.	    
    </div>
 			  
   	    
          
    <!-- alert Warning box -->
    
    <div class="alert alert-danger">
    	<strong>Oh snap! </strong> Change a few things up and try submitting again.	    
    </div>
 			  
   	    
Top