-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalert.html
More file actions
21 lines (21 loc) · 729 Bytes
/
alert.html
File metadata and controls
21 lines (21 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>my web page</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
</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 New!
</div>
</div>
</body>
</html>