-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmob.html
More file actions
45 lines (36 loc) · 1.46 KB
/
mob.html
File metadata and controls
45 lines (36 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Online Compiler</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="./CSS/mob.css" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="" />
<link rel="shortcut icon" href="https://avatars.githubusercontent.com/u/73450347?s=100&v=4" type="image/x-icon">
</head>
<body>
<div class="container">
<div class="brand-logo"></div>
<h1 class="brand-title">onEditor</h1>
<h4 style="font-size: 1rem; margin-bottom: 0.8vh;">Language</h4>
<select id="lang" style="width:100px; border-radius: 10px !important; height: 30px;">
<option selected="selected">Python</option>
<option>Java</option>
<option>C++</option>
<option>C</option>
</select>
<textarea id="source" style="height: 100px;">
print("hi")
print(1+1)
</textarea>
<textarea id="input" placeholder="Input" style="height: 50px !important;"></textarea>
<textarea readonly="readonly" id="output" placeholder="Output" style="height: 100px;"></textarea>
<button id="run" onclick="run()">▶️ Run</button>
<footer>
<p>Copyright of Hack Club ITER 2021</p>
</footer>
<script src="./JS/index.js"></script>
</div>
</body>
</html>