-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (26 loc) · 945 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The real power of the function</title>
<link rel="stylesheet" href="./src/styles.css">
<link href="https://fonts.googleapis.com/css?family=Lato&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="col-l">
<button id="code-exec" class="main-btn">Run the code!</button>
<div id="menu-container"></div>
</div>
<div id="editor-container" class="col-r">
<div id="monaco-editor" style="width: 100%; height: 100%;"></div>
</div>
</div>
<script src="./vendor/monaco-editor/min/vs/loader.js"></script>
<script src="./src/main.js" type="module"></script>
<script src="./src/editor.js" type="module"></script>
<script src="./src/menu.js" type="module"></script>
<script src="./src/runtime.js" type="module"></script>
<script src="./src/script-resolver.js" type="module"></script>
</body>
</html>