-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcheckbox.html
38 lines (34 loc) · 1.05 KB
/
checkbox.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
<!DOCTYPE html>
<html>
<head>
<title>Sample Checkbox</title>
<link rel="stylesheet" type="text/css" href="checkbox.css">
</head>
<body>
<label class="checkbox_container">
Max
<input type="checkbox" checked="checked">
<span class="checkbox_mark"></span>
</label>
<label class="checkbox_container">
Alex
<input type="checkbox" checked="checked">
<span class="checkbox_mark"></span>
</label>
<label class="checkbox_container">
Jardson
<input type="checkbox">
<span class="checkbox_mark"></span>
</label>
<label class="checkbox_container">
Mateo
<input type="checkbox">
<span class="checkbox_mark"></span>
</label>
<label class="checkbox_container">
Bubu
<input type="checkbox" checked="checked">
<span class="checkbox_mark"></span>
</label>
</body>
</html>