-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 976 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (26 loc) · 976 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.12/ace.js" type="text/javascript" charset="utf-8"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Python Code Executor</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div id="editor" style="height: 200px; width: 100%;"></div>
<div class="buttons">
<button id="runCode">Run Code</button>
<button id="saveCode">Save Code</button>
</div>
<div id="output"></div>
<div class="fetch-section">
<input type="text" id="fetchCodeId" placeholder="Enter code ID">
<button id="fetchCode">Fetch Code</button>
</div>
</div>
<script src="https://cdn.jsdelivr.net/pyodide/v0.18.1/full/pyodide.js"></script>
<script src="script.js"></script>
</body>
</html>