forked from muicss/mui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckbox.html
More file actions
48 lines (44 loc) · 1.26 KB
/
checkbox.html
File metadata and controls
48 lines (44 loc) · 1.26 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="../assets/mui/css/mui.css"/>
<script src="../assets/css-switch.js"></script>
<script src="../assets/mui/js/mui.js"></script>
</head>
<body>
<div class="mui-container">
<h1>Checkboxes</h1>
<div class="mui-panel">
<form>
<div class="mui-checkbox">
<label>
<input type="checkbox" value="" checked>
Active (Checked)
</label>
</div>
<div class="mui-checkbox">
<label>
<input type="checkbox" value="">
Active (Unchecked)
</label>
</div>
<div class="mui-checkbox">
<label>
<input type="checkbox" value="" checked disabled>
Disabled (Checked)
</label>
</div>
<div class="mui-checkbox">
<label>
<input type="checkbox" value="" disabled>
Disabled (Unchecked)
</label>
</div>
</form>
</div>
</div>
</body>
</html>