forked from google/blockly-games
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
121 lines (108 loc) · 3.17 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>About Blockly Games</title>
<link rel="stylesheet" href="common/common.css">
<style>
body {
padding: 1em 8em;
}
td {
padding: 0 1em;
}
</style>
</head>
<body>
<h1><a id="back" href="/">Blockly Games</a> : About</h1>
<p>Blockly Games is a series of educational games that teach programming. It is
designed for children who have not had prior experience with computer programming.
By the end of these games, players are ready to use conventional text-based languages.</p>
<table>
<tr>
<td>
<img src="index/puzzle.png" height=100 width=100>
</td>
<td>
<p>Puzzle is a quick introduction to Blockly's shapes and how the pieces snap together.</p>
</td>
</tr>
<tr>
<td>
<img src="index/maze.png" height=100 width=100>
</td>
<td>
<p>Maze is an introduction to loops and conditionals. It starts simply, but
every level is more challenging than the last.</p>
</td>
</tr>
<tr>
<td>
<img src="index/bird.png" height=100 width=100>
</td>
<td>
<p>Bird is a deep-dive into conditionals. Control-flow is explored with
increasingly complex conditions.</p>
</td>
</tr>
<tr>
<td>
<img src="index/turtle.png" height=100 width=100>
</td>
<td>
<p>Turtle is a deep-dive into loops. Use nested loops to paint a picture.
Then publish your art for the world to see.</p>
</td>
</tr>
<tr>
<td>
<img src="index/movie.png" height=100 width=100>
</td>
<td>
<p>Movie is an introduction to mathematical equations. Use math to animate a movie.
Then publish your movie for the world to watch.</p>
</td>
</tr>
<tr>
<td>
<img src="index/music.png" height=100 width=100>
</td>
<td>
<p>Music is an introduction to functions. Use functions to compose music.
Then publish your music for the world to listen to.</p>
</td>
</tr>
<tr>
<td>
<img src="index/pond-tutor.png" height=100 width=100>
</td>
<td>
<p>Pond Tutor introduces text-based programming. Levels switch back and forth
between blocks and actual JavaScript in a text editor.</p>
</td>
</tr>
<tr>
<td>
<img src="index/pond-duck.png" height=100 width=100>
</td>
<td>
<p>Pond is an open-ended contest to program the smartest duck.
Use either blocks or JavaScript.</p>
</td>
</tr>
</table>
<p>Blockly Games is a Google project to encourage tomorrow's programmers. The
games are designed to be self-paced and self-teaching. Feel free to use Blockly
Games both inside and outside the classroom. All code is open source, see
the <a href="https://github.com/google/blockly-games/wiki">developer's website</a>
for more info or to download zip files for offline use.</p>
<p>Developers, teachers and parents are welcome to
<a href="https://groups.google.com/forum/#!forum/blockly-games">give feedback</a>
as we continue to grow.</p>
<p style="text-align: center; font-size: small">
<a href="https://policies.google.com/privacy">Google Privacy Policy</a> —
<a href="https://policies.google.com/terms">Google Terms of Service</a>
</p>
<script src="common/back.js"></script>
</body>
</html>