-
Notifications
You must be signed in to change notification settings - Fork 0
/
button.html
20 lines (20 loc) · 1.07 KB
/
button.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<title>Button</title>
<link rel="stylesheet" type="text/css" href="bootstrap.min.css">
</head>
<body>
<button type="button" class="btn btn-danger">Danger</button>
<button type="button" class="btn btn-outline-danger">Danger</button>
<button type="button" class="btn btn-inline-danger">Danger</button>
<button type="button" class="btn btn-outline-danger btn-lg">Danger</button>
<button type="button" class="btn btn-danger btn-sm">Danger</button>
<button type="button" class="btn btn-danger btn-block">Danger</button>
<a href="#" class="btn btn-primary btn-lg active" role="button" aria-pressed="true">Primary link</a>
<a href="#" class="btn btn-secondary btn-lg active" role="button" aria-pressed="true">secondary Link</a>
<button type="button" class="btn btn-lg btn-primary" disabled>Primary button</button>
<a href="#" class="btn btn-primary btn-lg disabled" tabindex="-1" role="button" aria-disabled="true">Primary link</a>
<script type="text/java script" src="bootstrap.min.js"></script>
</body>
</html>