-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodoo_step_3.html
130 lines (120 loc) · 4 KB
/
todoo_step_3.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ToDoo step 3 - using Foundation Icon Fonts for icons</title>
<link rel="stylesheet" href="assets/css/foundation.css" />
<link rel="stylesheet" href="assets/foundation-icons/foundation-icons.css" />
<script src="assets/js/vendor/modernizr.js"></script>
</head>
<body>
<ul class="small-block-grid-1 medium-block-grid-2 large-block-grid-3">
<li>
<dl class="accordion" data-accordion>
<dd>
<a href="#panel1"><i class="fi-play"></i>List 1</a>
<div id="panel1" class="content">
<ul>
<li>
<input type="checkbox" id="checkbox_1_1" checked="checked"><label for="checkbox_1_1">Thing 1</label>
</li>
<li>
<input type="checkbox" id="checkbox_1_2" checked="checked"><label for="checkbox_1_2">Thing 2</label>
</li>
<li>
<input type="checkbox" id="checkbox_1_3"><label for="checkbox_1_3">Thing 3</label>
</li>
<li>
<a href=""><i class="fi-plus"></i>Add item</a>
</li>
</ul>
</div>
</dd>
</dl>
</li>
<li>
<dl class="accordion" data-accordion>
<dd>
<a href="#panel2"><i class="fi-play"></i>List 2</a>
<div id="panel2" class="content">
<ul>
<li>
<input type="checkbox" id="checkbox_2_1"><label for="checkbox_2_1">Thing 1</label>
</li>
<li>
<input type="checkbox" id="checkbox_2_2"><label for="checkbox_2_2">Thing 2</label>
</li>
<li>
<input type="checkbox" id="checkbox_2_3" checked="checked"><label for="checkbox_2_3">Thing 3</label>
</li>
<li>
<input type="checkbox" id="checkbox_2_4"><label for="checkbox_2_4">Thing 4</label>
</li>
<li>
<a href=""><i class="fi-plus"></i>Add item</a>
</li>
</ul>
</div>
</dd>
</dl>
</li>
<li>
<dl class="accordion" data-accordion>
<dd>
<a href="#panel3"><i class="fi-play"></i>List 3</a>
<div id="panel3" class="content">
<ul>
<li>
<input type="checkbox" id="checkbox_3_1" checked="checked"><label for="checkbox_3_1">Thing 1</label>
</li>
<li>
<input type="checkbox" id="checkbox_3_2"><label for="checkbox_3_2">Thing 2</label>
</li>
<li>
<input type="checkbox" id="checkbox_3_3"><label for="checkbox_3_3">Thing 3</label>
</li>
<li>
<input type="checkbox" id="checkbox_3_4"><label for="checkbox_3_4">Thing 4</label>
</li>
<li>
<input type="checkbox" id="checkbox_3_5"><label for="checkbox_3_5">Thing 5</label>
</li>
<li>
<input type="checkbox" id="checkbox_3_6"><label for="checkbox_3_6">Thing 6</label>
</li>
<li>
<a href=""><i class="fi-plus"></i>Add item</a>
</li>
</ul>
</div>
</dd>
</dl>
</li>
<li>
<dl class="accordion" data-accordion>
<dd>
<a href="#panel4"><i class="fi-play"></i>List 4</a>
<div id="panel4" class="content">
<ul>
<li>
<input type="checkbox" id="checkbox_4_1"><label for="checkbox_4_1">Thing 1</label>
</li>
<li>
<input type="checkbox" id="checkbox_4_2"><label for="checkbox_4_2">Thing 2</label>
</li>
<li>
<a href=""><i class="fi-plus"></i>Add item</a>
</li>
</ul>
</div>
</dd>
</dl>
</li>
<script src="assets/js/vendor/jquery.js"></script>
<script src="assets/js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>