-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (47 loc) · 2.02 KB
/
index.html
File metadata and controls
51 lines (47 loc) · 2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IDE</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="header title">{YourCode.<span id="ide">IDE</span>}</div>
<div class="control-panel">
<div class="fnt">Font Size :
<select id="fnt-size">
<option value="12px">12 px</option>
<option value="14px">14 px</option>
<option value="16px">16 px</option>
<option value="20px">20 px</option>
</select>
</div>
<div class="language-selection">
Select Language :
<select id="languages" class="languages">
<option value="java">Java</option>
<option value="c">C</option>
<option value="cpp">C++</option>
<option value="python">Python</option>
<option value="js">JavaScript</option>
</select>
</div>
</div>
<div id="editor" class="editor"></div>
<div class="output"></div>
<div class="button-container">
<button class="btn">Run</button>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.7.1/ace.js"
integrity="sha512-FKkEO4RZEQjFmU1hoUYdx6HJLdpHpNzgWspgnQCxx7OOkDVz4kiGJxR97yWc5bzjwcCpJC/CRCiQzuoGYAChhQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="script.js"></script>
</html>