| <!doctype html> |
| <html lang="en"> |
| <head> |
| <meta charset="utf-8"> |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| <meta name="viewport" content="width=device-width, initial-scale=1"> |
| <title>Alert</title> |
| <link rel="stylesheet" href="../../../dist/css/bootstrap.min.css"> |
| |
| <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> |
| <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> |
| <!--[if lt IE 9]> |
| <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> |
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> |
| <![endif]--> |
| </head> |
| <body> |
| |
| <div class="container"> |
| |
| <div class="page-header"> |
| <h1>Alert <small>Bootstrap Visual Test</small></h1> |
| </div> |
| |
| <div class="alert alert-warning fade in"> |
| <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> |
| <strong>Holy guacamole!</strong> Best check yo self, you're not looking too good. |
| </div> |
| |
| <div class="alert alert-danger fade in"> |
| <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> |
| <h4>Oh snap! You got an error!</h4> |
| <p>Change this and that and try again. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cras mattis consectetur purus sit amet fermentum.</p> |
| <p> |
| <button type="button" class="btn btn-danger">Take this action</button> |
| <button type="button" class="btn btn-default">Or do this</button> |
| </p> |
| </div> |
| |
| </div> |
| |
| <!-- JavaScript Includes --> |
| <script src="../vendor/jquery.min.js"></script> |
| <script src="../../transition.js"></script> |
| <script src="../../alert.js"></script> |
| |
| </body> |
| </html> |