-
Notifications
You must be signed in to change notification settings - Fork 0
/
alert.html
34 lines (30 loc) · 1.13 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
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Belajar Bootstrap</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="bootstrap-icons/font/bootstrap-icons.css">
</head>
<body>
<div class="container">
<div class="alert alert-danger">
<span class="bi bi-triangle"></span>
Ini pesan error :
<a class="alert-link" href="">213123123123</a>
</div>
<div class="alert alert-primary">
<span class="bi bi-github"></span>
Ini pesan primary
<a class="alert-link" href="">213123123123</a>
</div>
<div class="alert alert-success" role="alert">
<h4 class="alert-heading">Well done!</h4>
<p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within an alert works with this kind of content.</p>
<hr>
<p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
</div>
</div>
<script src="bootstrap/js/bootstrap.bundle.js"></script>
</body>
</html>