-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (31 loc) · 1.02 KB
/
index.html
File metadata and controls
38 lines (31 loc) · 1.02 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
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Online code Editor</title>
<link rel="stylesheet" href="ui/css/style.css" />
</head>
<body>
<div class="header"> Codeboard Online IDE </div>
<div class="control-panel">
Select Language:
<select id="languages" class="languages" onchange="changeLanguage()">
<!-- <option value="c"> C </option>-->
<!-- <option value="cpp"> C++ </option>-->
<!-- <option value="php"> PHP </option>-->
<option value="python"> Python </option>
<!-- <option value="node"> Node JS </option>-->
</select>
</div>
<div class="editor" id="editor"></div>
<div class="button-container">
<button class="btn" onclick="executeCode()"> Run </button>
</div>
<div class="output"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="ui/js/ide.js"></script>
<script src="ui/js/lib/ace.js"></script>
<script src="ui/js/lib/theme-monokai.js"></script>
</body>
</html>