-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (35 loc) · 1.15 KB
/
index.html
File metadata and controls
37 lines (35 loc) · 1.15 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
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Code Editor</title>
</head>
<body>
<div class="editor">
<div class="wrapper">
<div class="editorBody">
<div id="editorCode" class="code"></div>
</div>
<div class="footer">
<div class="left">
<button id="run" class="btn">RUN</button>
<button id="reset" class="btn">RESET</button>
</div>
<div class="right">
<div class="console">
<ul class="logs"></ul>
</div>
</div>
</div>
</div>
</div>
<!-- Required ACE Library -->
<script src="aceEditor/src-min/ace.js"></script>
<script src="aceEditor/src-min//mode-javascript.js"></script>
<script src="aceEditor/src-min/ext-language_tools.js"></script>
<!-- Custom Script -->
<script src="code.js"></script>
</body>
</html>