-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbadge.html
33 lines (32 loc) · 1.53 KB
/
badge.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container mt-5 mb-5 pb-5">
<div class="container">
<p class="text-danger text-capitalize display-6">Badges:</p>
<p class="text-primary text-capitalize">inside tag, <code>class="badge"</code></p>
<span class="badge bg-dark text-light">3</span>
<hr>
<p class="text-primary text-capitalize">inside tag, <code class="text-lowercase">class="badge rounded-pill"</code></p>
<span class="badge rounded-pill bg-dark text-light">3</span>
</div>
<hr>
<hr>
<div class="conatiner">
<p class="text-primary text-capitalize">button tag --> span tag --> <code class="text-lowercase">class="badge"/"badge rounded-pill"</code></p>
<p class="d-grid gap-2">
<button type="button" class="btn btn-primary">badge <span class="badge bg-dark text-light">3</span></button>
<button type="button" class="btn btn-primary">badge <span class="badge rounded-pill bg-dark text-light">3</span></button>
</p>
</div>
</div>
</body>
</html>