-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (30 loc) · 1.03 KB
/
index.html
File metadata and controls
35 lines (30 loc) · 1.03 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blockly for the Web Codelab</title>
</head>
<main>
<div>
<div id="blocklyDiv" style="height: 600px; width: 1000px;"></div>
</div>
</main>
<script src="https://unpkg.com/blockly"></script>
<xml xmlns="https://developers.google.com/blockly/xml" id="toolbox" style="display: none">
<block type="set_default_height"></block>
<block type="go_to_xyz"></block>
<block type="go_to"></block>
<block type="get_a_position"></block>
<block type="move"></block>
<block type="move_xyz"></block>
<block type="set_default_speed"></block>
<block type="set_default_xy"></block>
<block type="takeoff"></block>
<block type="land"></block>
<block type="get_position"></block>
</xml>
<script src="scripts/main.js"></script>
<script src="blockly-translations/workspace.js"></script>
</html>