-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (22 loc) · 884 Bytes
/
index.html
File metadata and controls
26 lines (22 loc) · 884 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Complement Web Editor</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<script src="https://unpkg.com/blockly/blockly.min.js"></script>
<script src="https://unpkg.com/@blockly/theme-dark@4.0.1/dist/index.js"></script>
<script src="shaped-renderer.js"></script>
<script src="verbose-dropdown.js"></script>
<script src="function.js"></script>
<script src="setbuilder.js"></script>
<script src="editor.js"></script>
</head>
<body>
<div id="blocklyDiv"></div>
<div id="blocklyArea"></div>
</body>
</html>