-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 827 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
29
30
31
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="style.css" type="text/css" media="all" />
<script
src="script.js"
type="text/javascript"
charset="utf-8"
defer
></script>
<title>WorkbenchJS</title>
</head>
<body>
<div id="workbench">
<div id="inPanel" class="panel">
Input
<button id="run">Run (ctrl + ↲)</button><br />
<div id="input">
<textarea></textarea>
</div>
</div>
<div id="outPanel" class="panel">
Console
<button id="clear">Clear</button><br />
<pre id="output"></pre>
</div>
</div>
</body>
</html>