-
Notifications
You must be signed in to change notification settings - Fork 1
/
alert.html
27 lines (27 loc) · 1.04 KB
/
alert.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="zh-Cn">
<head>
<meta charset="UTF-8">
<title>vinko</title>
<link rel="stylesheet" href="styles/vendor/pure-min.css" />
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
<section class="container">
<div class="alert alert-error alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<strong>hello, world!</strong>
</div>
<div class="alert alert-success alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<strong>hello, world!</strong>
</div>
<div class="alert alert-warning alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<strong>hello, world!</strong>
</div>
</section>
</body>
<script src="http://code.jquery.com/jquery-2.0.2.min.js"></script>
<script src="scripts/vinko.js"></script>
</html>