-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalert.html
More file actions
25 lines (25 loc) · 861 Bytes
/
Copy pathalert.html
File metadata and controls
25 lines (25 loc) · 861 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>My Web Page!</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<style>
.alert {
margin: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="alert alert-primary" role="alert">
This is an alert message. News!
</div>
<div class="alert alert-success" role="alert">
This is an alert message. Good news!
</div>
<div class="alert alert-danger" role="alert">
This is an alert message. Bad news!
</div>
</div>
</body>
</html>