-
Notifications
You must be signed in to change notification settings - Fork 0
/
curriculum.html
214 lines (210 loc) · 8.61 KB
/
curriculum.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Curriculum | CS Hands-On</title>
<link rel="icon" type="image/png" href="img/general/square-favicon.png"/>
<link rel="stylesheet" href="curriculum.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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>
<h1>Our Curriculum</h1>
<h2>Explore our computer-free worksheets and teaching material covering fundamental concepts of code.</h2>
</div>
<div id = "curriculum-info">
<h3 style = "margin-top: 70px">Learn the basics</h3>
<p style = "margin-bottom: 60px">
Our curriculum is built on a galaxy of planets which represent the <strong><span class='yellow-highlight'>six core concepts of computer science</span></strong>: Decomposition, Algorithms, Abstraction, Logic, Patterns, and Evaluation.
</p>
<img id = "alon-planet" src="img/curriculum/alon_planet.png" alt="">
<h3 style = "font-size: 25px">What’s in each planet?</h3>
<p>Each planet in our galaxy features <strong><span class='yellow-highlight'>engaging lessons and hands-on activities</span></strong> related to its core concept.</p>
<br>
<p>A couple of examples include playing a remixed game of hot potato and performing dance combo loops!</p>
<div id = "line"></div>
<div id="galaxy">
<h3>Our Galaxy</h3>
<p style = "width: 100%; margin-bottom: 15px;">Visit each planet for fun lessons and activities!</p>
<p> Use our <strong>printable worksheets</strong> and complementary <strong>slide decks</strong> to teach unplugged lessons.</p>
<div class = "download-group">
<a class = "download-all" href="img/curriculum/CS Hands-On Curriculum.zip" download target="_blank"><span class="download-icon"></span>Download Worksheets</a>
<a class = "download-all" href="https://drive.google.com/drive/folders/1YM6BtQnUl50O6WXnmlbXymZXh30gy2By?usp=sharing"target="_blank"><span class="visit-icon"></span>Visit Slides</a>
</div>
</div>
</div>
<div style = "display: flex; justify-content: center; align-items: center;">
<div id = "planet-grid">
<div>
<a href="/abstractopia">
<div style = "background-color: #F0EDFF" id = "planet-box" class = "Abstractopia">
<img src="img/curriculum/Abstractopia-group.png" alt="">
<h5>Abstractopia</h5>
<p>Learn to remove unnecessary details with abstraction</p>
</div>
</a>
</div>
<div>
<a href="/logicland">
<div style = "background-color: #FEFCE9" id = "planet-box" class = "Logicland">
<img src="img/curriculum/Logicland-group.png" alt="">
<h5>Logicland</h5>
<p>Learn to think logically</p>
</div>
</a>
</div>
<div>
<a href="/algorithopoly">
<div style = "background-color: #FFF4EA" id = "planet-box" class = "Algorithopoly">
<img src="img/curriculum/Algorithopoly-group.png" alt="">
<h5>Algorithopoly</h5>
<p>Learn to create effective algorithms</p>
</div>
</a>
</div>
<div>
<a href="/decomposphere">
<div style = "background-color: #EAFFEC" id = "planet-box" class = "Decomposphere">
<img src="img/curriculum/Decomposphere-group.png" alt="">
<h5>Decomposphere</h5>
<p>Learn to split problems into smaller parts</p>
</div>
</a>
</div>
<div>
<a href="/evaluatus">
<div style = "background-color: #E4F5FF" id = "planet-box" class = "Evaluatus">
<img src="img/curriculum/Evaluatus-group.png" alt="">
<h5>Evaluatus</h5>
<p>Learn to evaluate judgements</p>
</div>
</a>
</div>
<div>
<a href="/patteron">
<div style = "background-color: #FFEDED" id = "planet-box" class = "Patteron">
<img src="img/curriculum/Patteron-group.png" alt="">
<h5>Patteron</h5>
<p>Learn to find and distinguish different patterns</p>
</div>
</a>
</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>
</body>
</html>