-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·82 lines (68 loc) · 3.71 KB
/
index.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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="example/css/codemirror.css">
<link rel="stylesheet" href="example/css/robot.css">
<link rel="stylesheet" href="example/css/main.css">
</head>
<body>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
<![endif]-->
<div class="container">
<!-- Main hero unit for a primary marketing message or call to action -->
<div class="hero-unit top-container">
<div class="robot-example-top">
</div>
<h1>robot applet</h1>
<p>The HTML5 robot applet can be used to <strong>teach basic programming and maths</strong>.</p>
<p>We hope that we can improve education with this, as it is a modern version of tried and proven concepts: the <a href="https://en.wikipedia.org/wiki/Turtle_graphics">LOGO Turtle</a> and <a href="http://en.wikipedia.org/wiki/Karel_(programming_language)">Karel the Robot</a>.</p>
<p>Use this in your computer science or maths course to explain basic programming and geometry. Above all, let the students write or modify code for this!</p>
<iframe src="https://ghbtns.com/github-btn.html?user=janpaul123&repo=robot&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe>
</div>
<div class="row">
<div class="span4">
<div class="robot-example robot-example-1">
</div>
</div>
<div class="span8">
<h2>Simple commands</h2>
<p>A simple API is used for driving the robot around, which is perfect for teaching programming.</p>
<div class="robot-example-1-editor">
</div>
</div>
</div>
<div class="row">
<div class="span4">
<div class="robot-example robot-example-2">
</div>
</div>
<div class="span8">
<h2>Free form driving</h2>
<p>When having any walls, the robot can make arbitrary turns.</p>
<div class="robot-example-2-editor">
</div>
</div>
</div>
<hr>
<footer>
<p>© Jan Paul Posma and University of Oxford, 2012</p>
</footer>
</div> <!-- /container -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="example/js/jquery-1.8.2.min.js"><\/script>')</script>
<script src="example/js/bootstrap.js"></script>
<script src="example/js/codemirror.js"></script>
<script src="example/js/javascript.js"></script>
<script src="example/js/robot.js"></script>
<script src="example/js/main.js"></script>
</body>
</html>