` and adding a `.alert` class along with one of the four contextual classes (i.e., `.alert-success`, `.alert-info`, `.alert-warning`, `.alert-danger`). The following example demonstrates this:
## Example
Success! Well done with the submission.
Info! Please note this information.
Warning! Please do not submit.
Error! Please make some changes.
[Try it Β»](#)
The result is as follows:

## Dismissal Alerts
To create a Dismissal Alert, follow these steps:
* Add a basic alert by creating a `` and adding a `.alert` class along with one of the four contextual classes (i.e., `.alert-success`, `.alert-info`, `.alert-warning`, `.alert-danger`).
* Add the optional `.alert-dismissable` class to the above `
` class.
* Add a close button.
The following example demonstrates this:
## Example
Success! Well done with the submission.
Info! Please note this information.
Warning! Please do not submit.
Error! Please make some changes.
> !(#)Make sure to use a `
YouTip