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