-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathButtons2.html
More file actions
105 lines (83 loc) · 3.08 KB
/
Buttons2.html
File metadata and controls
105 lines (83 loc) · 3.08 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!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>Buttons2.0 !</title>
</head>
<body>
<div class="container">
<div class="row pt-5">
<div class="col-6">
<h2>CheckBoxes</h2>
<hr>
<div class="row ml-2">
<div class="col-12">
<input type="checkbox" name="" id="" value=""> Normal Checkbox
</div>
<div class="col-12 mt-3">
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-primary">
<input type="checkbox" name="" id="" autocomplete="off">Bootstraped Checkbox
</label>
</div>
</div>
<div class="col-12 mt-3">
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-primary">
<input type="checkbox" name="" id="" autocomplete="off">Bootstraped Checkbox 1
</label>
<label class="btn btn-primary active">
<input type="checkbox" name="" id="" autocomplete="off">Bootstraped Actived Checkbox 2
</label>
<label class="btn btn-primary disabled">
<input type="checkbox" name="" id="" autocomplete="off" disabled="">Bootstraped Disabled Checkbox 3
</label>
</div>
</div>
</div>
</div>
<div class="col-12 mt-3"></div>
<div class="col-6">
<h2>Radio Buttons</h2>
<hr>
<div class="row ml-2">
<div class="col-12">
<input type="radio" name="" id="" value=""> Normal Radio Button
</div>
<div class="col-12 mt-3">
</div>
<div class="col-12 mt-3">
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-outline-success">
<input type="radio" name="answer" id="right" autocomplete="off">Right
</label>
<label class="btn btn-outline-danger">
<input type="radio" name="answer" id="wrong" autocomplete="off">Wrong
</label>
</div>
</div>
<div class="col-12 mt-5">
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<label class="btn btn-success">
<input type="radio" name="answer" id="right" autocomplete="off">Right
</label>
<label class="btn btn-danger">
<input type="radio" name="answer" id="wrong" autocomplete="off">Wrong
</label>
</div>
</div>
</div>
</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>