-
Notifications
You must be signed in to change notification settings - Fork 0
/
logicland.html
263 lines (257 loc) · 10.4 KB
/
logicland.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Logicland | CS Hands-On</title>
<link rel="stylesheet" href="logicland.css">
<link rel="stylesheet" href="downloadall.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="img/general/square-favicon.png"/>
<link rel="stylesheet" href="general.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src = "script.js"></script>
<script src = "curriculum.js"></script>
</head>
<body>
<div id="header">
<nav id = "mobile-nav">
<div class="topnav">
<div id = "flex">
<a href="/"><img id = "favicon" src="img/general/blue-favicon.png" alt="logo"></a>
<p>CS Hands-On</p>
</div>
<div id="myLinks">
<a href="/">Home</a>
<a style = "text-decoration-line: underline; text-decoration-style: wavy;text-decoration-color: #9DB3FF;" class = "page-link" href="/weekofcode">Week of Code</a>
<a href="/about">About</a>
<div class="dropdown">
<button class="dropbtn" onclick="myMobileFunction()">Curriculum
<i id = "down" class="fa fa-caret-up rotate"></i>
</button>
<div class="dropdown-content" id="myDropdown-mobile">
<a href="/curriculum">Overview</a>
<a href="/abstractopia">Abstractopia</a>
<a href="/logicland">Logicland</a>
<a href="/algorithopoly">Algorithopoly</a>
<a href="/decomposphere">Decomposphere</a>
<a href="/evaluatus">Evaluatus</a>
<a href="/patteron">Patteron</a>
</div>
</div>
<a href="/contact">Contact</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="sandwichFunction()">
<div id="nav-icon3">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</a>
</div>
</nav>
<nav>
<div id = "desktop-nav">
<a id = "left" href="/">
<div id = "flex">
<img id = "favicon" src="img/general/blue-favicon.png" alt="logo">
<p>CS Hands-On</p>
</div>
</a>
<div id = "links" style="float:right;">
<a class = "page-link" href="/">Home</a>
<a style = "text-decoration-line: underline; text-decoration-style: wavy;text-decoration-color: #9DB3FF;" class = "page-link" href="/weekofcode">Week of Code</a>
<div class="dropdown">
<button class="dropbtn" onclick="myFunction()">Curriculum
<i id = "down" class="fa fa-caret-up rotate"></i>
</button>
<div class="dropdown-content" id="myDropdown">
<a href="/curriculum">Overview</a>
<a href="/abstractopia">Abstractopia</a>
<a href="/logicland">Logicland</a>
<a href="/algorithopoly">Algorithopoly</a>
<a href="/decomposphere">Decomposphere</a>
<a href="/evaluatus">Evaluatus</a>
<a href="/patteron">Patteron</a>
</div>
</div>
<a class = "page-link" href="/about">About</a>
<a class = "page-link" href="/contact">Contact</a>
</div>
</div>
</nav>
<img id = "alon-planet" src="img/curriculum/logicland/lex-planet.png" alt="Lex">
<h1>Logicland</h1>
<h2>Learn to think logically</h2>
</div>
<div id = "lessons">
<h2>Lesson Plans</h2>
<div class = "download-group">
<a class = "download-all" href="img/curriculum/logicland/Logicland.zip" download target="_blank"><span class="download-icon"></span>Download Worksheets</a>
<a class = "download-all" href="https://drive.google.com/drive/folders/1HwOOmjqmnkM-va83CI78-TIty5I4-jTL?usp=sharing" target="_blank"><span class="visit-icon"></span>Visit Slides</a>
</div>
<div id = "mission-container">
<div class = "mission">
<h3>Mission 1: Binary Pixel Art</h3>
<div class = "content-flex">
<div class = "left">
<div style = "display: inline"><img class = "worksheet" src="img/curriculum/logicland/worksheet1.png" alt=""></div>
</div>
<div class = "mission-info right">
<h4>Overview</h4>
<p>Duration: 20 minutes</p>
<p>Objective: Learn how computers use binary to communicate.</p>
<h4 style = "margin-top: 20px">View PDF</h4>
<div class = "view-group">
<a class = "download" href="img/curriculum/logicland/Binary Pixel Art.pdf" target="_blank">Worksheet</a>
<a class = "download" href="https://docs.google.com/presentation/d/1A1-vbKtT5iKYNwaeE22pMH2UXqmZ7zLhbxpa_NXKYf0/edit?usp=sharing" target="_blank" >Slides</a>
<a class = "download fade" href="img/curriculum/logicland/Binary Pixel Art Educator Guide.pdf" target="_blank">Educator Guide</a>
</div>
</div>
</div>
<button class="collapsible">View Skills</button>
<div class = "skill-grid">
<div style = "height: 10px"></div>
<div class = "grid">
<div><p class = "logic">Logic</p></div>
<div><p class = "literacy">Literacy: Reading</p></div>
<div><p class = "creative-arts">Creative Arts: Coloring</p></div>
</div>
</div>
</div>
<div class = "mission">
<h3>Mission 2: Relational Mixed Up Dots</h3>
<div class = "content-flex">
<div class = "left">
<div><img class = "worksheet" src="img/curriculum/logicland/worksheet3.png" alt=""></div>
</div>
<div class = "mission-info right">
<h4>Overview</h4>
<p>Duration: 30 minutes</p>
<p>Objective: Learn how to use relational operators to make comparisons.</p>
<h4 style = "margin-top: 20px">View PDF</h4>
<div class = "view-group">
<a class = "download" href="img/curriculum/logicland/Relational Mixed Up Dots.pdf" target="_blank">Worksheet</a>
<a class = "download" href="https://docs.google.com/presentation/d/1s9eADOmuyp7fGGpprZyqGJ8dsL7UVMdZNOhs3N6mT9g/edit?usp=sharing" target="_blank" >Slides</a>
<a class = "download fade" href="img/curriculum/logicland/Relational Mixed Up Dots Educator Guide.pdf" target="_blank">Educator Guide</a>
</div>
</div>
</div>
<button class="collapsible">View Skills</button>
<div class = "skill-grid">
<div style = "height: 10px"></div>
<div class = "grid">
<div><p class = "logic">Logic</p></div>
<div><p class = "literacy">Literacy: Reading</p></div>
<div><p class = "creative-arts">Creative Arts: Drawing</p></div>
<div><p class = "math">Mathematics: Numeracy</p></div>
<div><p class = "math">Mathematics: Algebra</p></div>
</div>
</div>
</div>
<div class = "mission">
<h3>Mission 3: Logical Mixed Up Dots</h3>
<div class = "content-flex">
<div class = "left">
<div><img class = "worksheet" src="img/curriculum/logicland/worksheet2.png" alt=""></div>
</div>
<div class = "mission-info right">
<h4>Overview</h4>
<p>Duration: 30 minutes</p>
<p>Objective: Learn how to use logical operators to make comparisons.</p>
<h4 style = "margin-top: 20px">View PDF</h4>
<div class = "view-group">
<a class = "download" href="img/curriculum/logicland/Logical Mixed Up Dots.pdf" target="_blank">Worksheet</a>
<a class = "download" href="https://docs.google.com/presentation/d/1swI7Fn1jWHC5Za-X1S3KLTzHMGPUmBANHcrbWobdsPY/edit?usp=sharing" target="_blank" >Slides</a>
<a class = "download fade" href="img/curriculum/logicland/Logical Mixed Up Dots Educator Guide.pdf" target="_blank">Educator Guide</a>
</div>
</div>
</div>
<button class="collapsible">View Skills</button>
<div class = "skill-grid">
<div style = "height: 10px"></div>
<div class = "grid">
<div><p class = "logic">Logic</p></div>
<div><p class = "literacy">Literacy: Reading</p></div>
<div><p class = "creative-arts">Creative Arts: Drawing</p></div>
<div><p class = "math">Mathematics: Numeracy</p></div>
<div><p class = "math">Mathematics: Algebra</p></div>
</div>
</div>
</div>
</div>
</div>
<br><br><br><br><br><br>
<footer>
<div id = "content">
<div class = "grid">
<div id = "info">
<div class = "flex">
<img src="img/general/favicon.png" alt="logo">
<h2>CS Hands-On</h2>
</div>
<p>Our mission is to empower the next generation of coders through technology-free and interactive computer science curriculum.</p>
<h4>Hear more from us!<br>Get notified of our latest curriculum launches:</h4>
<form name="submit-to-google-sheet">
<input name="email" type="email" autocomplete="off" placeholder="[email protected]" required>
<br>
<button id="submit" type="submit">Submit</button>
</form>
</div>
<div id = "link-grid">
<div>
<h3>About</h3>
<a href="/curriculum">Topics</a>
<a href="/about">Our story</a>
<a href="/about">Our team</a>
</div>
<div>
<h3>Curriculum</h3>
<a href="/abstractopia">Abstractopia</a>
<a href="/logicland">Logicland</a>
<a href="/algorithopoly">Algorithopoly</a>
<a href="/decomposphere">Decomposphere</a>
<a href="/evaluatus">Evaluatus</a>
<a href="/patteron">Patteron</a>
</div>
<div>
<h3>Help</h3>
<a target = "blank" href="https://docs.google.com/forms/d/e/1FAIpQLSffeZYBRf9Wyg4N8dm7H78ieWJ1miCkFg2Ptc1oYj0tx5iZ0g/viewform">Feedback</a>
<a href="/contact">Contact</a>
</div>
</div>
</div>
<div id = "line"></div>
<p id = "copyright">© 2021 CS Hands-On</p>
</div>
</footer>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("activeC");
this.classList.toggle("round");
var content = this.nextElementSibling;
if (content.style.maxHeight){
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
});
}
window.addEventListener("beforeunload", function () {
document.body.classList.add("animate-out");
});
</script>
<script>
function openNav() {
document.getElementById("mySidepanel").style.width = "250px";
}
function closeNav() {
document.getElementById("mySidepanel").style.width = "0";
}
</script>
</body>
</html>