-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathButtonsGroup.html
More file actions
39 lines (36 loc) · 1.19 KB
/
ButtonsGroup.html
File metadata and controls
39 lines (36 loc) · 1.19 KB
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
38
39
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie-edge">
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<title>Buttons Groups</title>
</head>
<body>
<div class="container">
<div class="row-12">
<div class="col-12 mt-2"><h2>btn-group</h2></div>
</div>
<div class="row ml-2">
<div class="col-12 mt-2">
<div class="btn-group">
<button class="btn btn-primary">1</button>
<button class="btn btn-secondary">2</button>
<button class="btn btn-success">3</button>
<button class="btn btn-warning">4</button>
<button class="btn btn-danger">5</button>
<button class="btn btn-info">6</button>
<button class="btn btn-light">7</button>
<button class="btn btn-dark">8</button>
</div>
</div>
</div>
</div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>