forked from AmanSingour/Bootstrap-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
11 Buttons.html
59 lines (49 loc) · 2.58 KB
/
11 Buttons.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Bootstrap</title>
<!-- Bootstrap CDN -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery lib -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<br>
<div class="container">
<button type="button" class="btn btn-default">Default</button>
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-success">Success</button>
<button type="button" class="btn btn-info">Info</button>
<button type="button" class="btn btn-warning">Warning</button>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-link">Link</button>
<hr>
<a href="#" class="btn btn-info" role="button">Link Button</a>
<input type="button" class="btn btn-primary" value="Input Button">
<input type="submit" class="btn btn-warning" value="Submit Button">
<hr>
<!-- Button Sizes -->
<button type="button" class="btn btn-primary btn-lg">Large</button>
<button type="button" class="btn btn-primary btn-md">Medium</button>
<button type="button" class="btn btn-primary btn-sm">Small</button>
<button type="button" class="btn btn-primary btn-xs">XSmall</button>
<hr>
<!-- Block Level Button -->
<button type="button" class="btn btn-info btn-block">Block Button 1</button>
<button type="button" class="btn btn-danger btn-block">Block Button 2</button>
<button type="button" class="btn btn-info btn-lg btn-block">Large Block Button 1</button>
<button type="button" class="btn btn-danger btn-lg btn-block">Large Block Button 2</button>
<button type="button" class="btn btn-info btn-sm btn-block">Small Block Button 1</button>
<button type="button" class="btn btn-info btn-sm btn-block">Small Block Button 1</button>
<hr>
<!-- Active/Disable Button -->
<button type="button" class="btn btn-primary active">Active Primary</button>
<button type="button" class="btn btn-primary disabled">Disabled Primary</button>
</div>
</body>
</html>