-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (37 loc) · 1.3 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
<!-- SABIR KHAN AKASH ~ @ 22 APRIL 2022 ~ [email protected] -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CuriousJr Assignment</title>
<script src="assets/vendor/blockly_compressed.js"></script>
<script src="assets/vendor/blocks_compressed.js"></script>
<script src="assets/vendor/javascript_compressed.js"></script>
<script src="assets/vendor/jquery-3.5.1.min.js"></script>
<script src="assets/vendor/msg-en.js"></script>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div id="blocklyDiv"></div>
<div class="game">
<div>
<div id="inputBox" class="text-input"></div>
<div class="button-container">
<button id="runBtn" class="button primary"><span>Run</span></button>
<button id="resetBtn" class="button secondary"><span>Reset</span></button>
</div>
</div>
</div>
<!--
Resource for tool to create custom blocks:
https://blockly-demo.appspot.com/static/demos/blockfactory/index.html
-->
<xml xmlns="https://developers.google.com/blockly/xml" id="toolbox" style="display: flex">
<!-- block for bot -->
<block type="bot"></block>
<!-- block for dropdown menu -->
<block type="dropdown"></block>
</xml>
<script src="assets/scripts/blocks.js"></script>
</body>
</html>