forked from hung1605/student_manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
abc.html
37 lines (25 loc) · 1.03 KB
/
abc.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
35
36
37
<!DOCTYPE html>
<html>
<head>
<!-- Add Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<!-- Button with primary color -->
<button type="button" class="btn btn-primary">Primary Button</button>
<!-- Button with secondary color -->
<button type="button" class="btn btn-secondary">Secondary Button</button>
<!-- Button with success color -->
<button type="button" class="btn btn-success">Success Button</button>
<!-- Button with danger color -->
<button type="button" class="btn btn-danger">Danger Button</button>
<!-- Button with warning color -->
<button type="button" class="btn btn-warning">Warning Button</button>
<!-- Button with info color -->
<button type="button" class="btn btn-info">Info Button</button>
<!-- Button with light color -->
<button type="button" class="btn btn-light">Light Button</button>
<!-- Button with dark color -->
<button type="button" class="btn btn-dark">Dark Button</button>
</body>
</html>