-
Notifications
You must be signed in to change notification settings - Fork 0
/
button.html
28 lines (20 loc) · 921 Bytes
/
button.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
<!DOCTYPE html>
<html lang="en">
<head>
<title> [web] prototype - buttons </title>
<meta charset="utf-8">
<!-- stylesheets -->
<link type="text/css" rel="stylesheet" href="/assets/vendor/font-awesome/css/font-awesome.min.css">
<link type="text/css" rel="stylesheet" href="/assets/vendor/bootstrap/dist/css/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="/assets/css/main.min.css">
</head>
<body>
<button type="button" class="btn btn-default"> Button </button>
<button type="button" class="btn btn-primary"> Button </button>
<button type="button" class="btn btn-info"> Button </button>
<button type="button" class="btn btn-danger"> Button </button>
<button type="button" class="btn btn-success"> Button </button>
<button type="button" class="btn btn-warning" disabled="disabled"> Button </button>
<button type="button" class="btn btn-inverse"> Button </button>
</body>
</html>