mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
e2b6badb86
* Remove IE compatibility mode meta tag from docs, examples, and JS tests as we no longer support IE9 and IE8 * update and remove some IE bits from our supported browser page * update introduction.md to match * reword starter template intro
51 lines
2.1 KiB
HTML
51 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="stylesheet" href="../../../dist/css/bootstrap.min.css">
|
|
<title>Alert</title>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Alert <small>Bootstrap Visual Test</small></h1>
|
|
|
|
<div class="alert alert-warning alert-dismissible fade show" role="alert">
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
|
|
</div>
|
|
|
|
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
<p>
|
|
<strong>Oh snap!</strong> <a href="#" class="alert-link">Change a few things up</a> and try submitting again.
|
|
</p>
|
|
<p>
|
|
<button type="button" class="btn btn-danger">Danger</button>
|
|
<button type="button" class="btn btn-secondary">Secondary</button>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
<p>
|
|
<strong>Oh snap!</strong> <a href="#" class="alert-link">Change a few things up</a> and try submitting 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-primary">Or do this</button>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="../../../docs/assets/js/vendor/jquery-slim.min.js"></script>
|
|
<script src="../../dist/util.js"></script>
|
|
<script src="../../dist/alert.js"></script>
|
|
</body>
|
|
</html>
|